Changeset 9a241af
- Timestamp:
- Dec 22, 2012 3:10:57 PM (8 years ago)
- Branches:
- master
- Children:
- 42f8c71d, 81975e9
- Parents:
- 69d22b8
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.tx/config
r69d22b8 r9a241af 132 132 trans.uk_UA = debian/po/uk.po 133 133 134 [I2P.i2prouter-script] 135 source_file = installer/resources/locale/messages_en.po 136 source_lang = en 137 trans.de = installer/resources/locale/po/messages_de.po 138 134 139 [main] 135 140 host = http://www.transifex.net -
build.xml
r69d22b8 r9a241af 397 397 398 398 <target name="prep-script-translation" > 399 <!-- script translation added in 0.8.13, disable for now --> 400 <echo message="i2prouter script translations disabled" /> 401 <!-- 399 <!-- script translation added in 0.8.13, enabled in 0.9.5. --> 402 400 <ant dir="installer/resources/locale" target="bundle" /> 403 401 <copy todir="pkg-temp/locale/"> 404 402 <fileset dir="installer/resources/locale/mo/" /> 405 403 </copy> 406 -->407 404 </target> 408 405 -
installer/resources/i2prouter
r69d22b8 r9a241af 114 114 #DETAIL_STATUS=true 115 115 116 # If set, the 'pause' and 'resume' commands will be enabled. These make it117 # possible to pause the JVM or Java application without completely stopping118 # the Wrapper. See the wrapper.pausable and wrapper.pausable.stop_jvm119 # properties for more information.120 #PAUSABLE=true121 122 116 # By default we show a detailed usage block. Uncomment to show brief usage. 123 117 #BRIEF_USAGE=true … … 199 193 200 194 failed() { 201 echo "** Failed to load the wrapper**"195 echo "**`gettext 'Failed to load the wrapper'`**" 202 196 case `uname -s` in 203 197 FreeBSD) … … 320 314 if [ ! -x "$PSEXE" ] 321 315 then 322 e val echo `gettext 'Unable to locate "ps".'`323 e val echo `gettext 'Please report this message along with the location of the command on your system.'`316 echo 'Unable to locate "ps".' 317 echo 'Please report this message along with the location of the command on your system.' 324 318 exit 1 325 319 fi … … 333 327 if [ ! -x "$TREXE" ] 334 328 then 335 e val echo `gettext 'Unable to locate "tr".'`336 e val echo `gettext 'Please report this message along with the location of the command on your system.'`329 echo 'Unable to locate "tr".' 330 echo 'Please report this message along with the location of the command on your system.' 337 331 exit 1 338 332 fi … … 500 494 if [ -f "$1" ] 501 495 then 502 e val echo `gettext ' $1 Found but not executable.'`;496 echo ' $1 Found but not executable.'; 503 497 else 504 498 echo " $1" … … 559 553 if [ -z "$WRAPPER_TEST_CMD" ] 560 554 then 561 e val echo `gettext 'Unable to locate any of the following binaries:'`555 echo 'Unable to locate any of the following binaries:' 562 556 outputFile "$WRAPPER_CMD-$DIST_OS-$DIST_ARCH-$DIST_BITS" 563 557 if [ ! "$DIST_BITS" = "32" ] … … 605 599 606 600 # Build the command file clause. 607 if [ -n "$PAUSABLE" ] 608 then 609 COMMANDPROP="wrapper.commandfile=\"$COMMANDFILE\" wrapper.pausable=TRUE" 610 else 611 COMMANDPROP= 612 fi 601 COMMANDPROP= 613 602 614 603 # Build the log file clause. … … 661 650 if [ ! -x "$IDEXE" ] 662 651 then 663 e val echo `gettext 'Unable to locate "id".'`664 e val echo `gettext 'Please report this message along with the location of the command on your system.'`652 echo 'Unable to locate "id".' 653 echo 'Please report this message along with the location of the command on your system.' 665 654 exit 1 666 655 fi … … 806 795 # This is a stale pid file. 807 796 rm -f "$PIDFILE" 808 e val echo `gettext 'Removed stale pid file: $PIDFILE'`797 echo 'Removed stale pid file: $PIDFILE' 809 798 pid="" 810 799 fi 811 800 fi 812 801 else 813 e val echo `gettext 'Cannot read $PIDFILE.'`802 echo 'Cannot read $PIDFILE.' 814 803 exit 1 815 804 fi … … 912 901 913 902 console() { 914 eval echo `gettext 'Running $APP_LONG_NAME...'`903 eval echo "`gettext 'Running $APP_LONG_NAME'`..." 915 904 getpid 916 905 if [ "X$pid" = "X" ] … … 935 924 waitforjavastartup() { 936 925 getstatus 937 eval echo $ECHOOPT `gettext 'Waiting for $APP_LONG_NAME...'`926 eval echo $ECHOOPT "`gettext 'Waiting for $APP_LONG_NAME'`..." 938 927 939 928 # Wait until the timeout or we have something besides Unknown. … … 982 971 if [ "X$pid" = "X" ] 983 972 then 984 eval echo `gettext ' WARNING: $APP_LONG_NAME may have failed to start.'`973 eval echo " `gettext 'WARNING: $APP_LONG_NAME may have failed to start.'`" 985 974 exit 1 986 975 else 987 eval echo `gettext ' running: PID:$pid'`976 eval echo ' running: PID:$pid' 988 977 fi 989 978 else … … 994 983 macosxstart() { 995 984 # The daemon has been installed. 996 e val echo `gettext 'Starting $APP_LONG_NAME. Detected Mac OSX and installed launchd daemon.'`985 echo 'Starting $APP_LONG_NAME. Detected Mac OSX and installed launchd daemon.' 997 986 if [ `id | sed 's/^uid=//;s/(.*$//'` != "0" ] ; then 998 987 eval echo `gettext 'Must be root to perform this action.'` … … 1022 1011 upstartstart() { 1023 1012 # The daemon has been installed. 1024 e val echo `gettext 'Starting $APP_LONG_NAME. Detected Linux and installed upstart.'`1013 echo 'Starting $APP_LONG_NAME. Detected Linux and installed upstart.' 1025 1014 if [ `id | sed 's/^uid=//;s/(.*$//'` != "0" ] ; then 1026 1015 eval echo `gettext 'Must be root to perform this action.'` … … 1040 1029 1041 1030 start() { 1042 eval echo `gettext 'Starting $APP_LONG_NAME...'`1031 eval echo "`gettext 'Starting $APP_LONG_NAME'`..." 1043 1032 getpid 1044 1033 if [ "X$pid" = "X" ] … … 1065 1054 # $1 exit if down flag 1066 1055 1067 eval echo `gettext 'Stopping $APP_LONG_NAME...'`1056 eval echo "`gettext 'Stopping $APP_LONG_NAME'`..." 1068 1057 getpid 1069 1058 if [ "X$pid" = "X" ] … … 1108 1097 CNT=`expr $CNT + 1` 1109 1098 else 1110 eval echo `gettext 'Waiting for $APP_LONG_NAME to exit...'`1099 eval echo "`gettext 'Waiting for $APP_LONG_NAME to exit'`..." 1111 1100 CNT=0 1112 1101 fi … … 1133 1122 # $1 exit if down flag 1134 1123 1135 eval echo `gettext 'Stopping $APP_LONG_NAME gracefully...'`1124 eval echo "`gettext 'Stopping $APP_LONG_NAME gracefully'`..." 1136 1125 getpid 1137 1126 if [ "X$pid" = "X" ] … … 1168 1157 1169 1158 pause() { 1170 e val echo `gettext 'Pausing $APP_LONG_NAME.'`1159 echo 'Pausing $APP_LONG_NAME.' 1171 1160 } 1172 1161 1173 1162 resume() { 1174 e val echo `gettext 'Resuming $APP_LONG_NAME.'`1163 echo 'Resuming $APP_LONG_NAME.' 1175 1164 } 1176 1165 … … 1194 1183 1195 1184 installUpstart() { 1196 e val echo `gettext ' Installing the $APP_LONG_NAME daemon using upstart..'`1185 echo ' Installing the $APP_LONG_NAME daemon using upstart..' 1197 1186 if [ -f "${APP_NAME}.conf" ] ; then 1198 e val echo `gettext ' a custom upstart conf file ${APP_NAME}.conf found'`1187 echo ' a custom upstart conf file ${APP_NAME}.conf found' 1199 1188 cp "${REALDIR}/${APP_NAME}.install" "/etc/init/${APP_NAME}.conf" 1200 1189 else 1201 e val echo `gettext ' creating default upstart conf file..'`1190 echo ' creating default upstart conf file..' 1202 1191 echo "# ${APP_NAME} - ${APP_LONG_NAME}" > "/etc/init/${APP_NAME}.conf" 1203 1192 echo "description \"${APP_LONG_NAME}\"" >> "/etc/init/${APP_NAME}.conf" … … 1238 1227 APP_NAME_LOWER=`echo "$APP_NAME" | $TREXE "[A-Z]" "[a-z]"` 1239 1228 if [ "$DIST_OS" = "solaris" ] ; then 1240 e val echo `gettext 'Detected Solaris:'`1229 echo 'Detected Solaris:' 1241 1230 if [ -f /etc/init.d/$APP_NAME ] ; then 1242 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1243 exit 1 1244 else 1245 eval echo `gettext ' Installing the $APP_LONG_NAME daemon..'`1231 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1232 exit 1 1233 else 1234 eval echo " `gettext 'Installing the $APP_LONG_NAME daemon'`.." 1246 1235 ln -s "$REALPATH" "/etc/init.d/$APP_NAME" 1247 1236 ln -s "/etc/init.d/$APP_NAME" "/etc/rc3.d/K20$APP_NAME_LOWER" … … 1250 1239 elif [ "$DIST_OS" = "linux" ] ; then 1251 1240 if [ -f /etc/redhat-release -o -f /etc/redhat_version -o -f /etc/fedora-release ] ; then 1252 e val echo `gettext 'Detected RHEL or Fedora:'`1241 echo 'Detected RHEL or Fedora:' 1253 1242 if [ -f "/etc/init.d/$APP_NAME" -o -f "/etc/init/${APP_NAME}.conf" ] ; then 1254 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1243 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1255 1244 exit 1 1256 1245 else … … 1258 1247 installUpstart 1259 1248 else 1260 eval echo `gettext ' Installing the $APP_LONG_NAME daemon..'`1249 eval echo " `gettext 'Installing the $APP_LONG_NAME daemon'`.." 1261 1250 ln -s "$REALPATH" "/etc/init.d/$APP_NAME" 1262 1251 /sbin/chkconfig --add "$APP_NAME" … … 1265 1254 fi 1266 1255 elif [ -f /etc/slackware-version ]; then 1267 e val echo `gettext 'Detected Slackware Linux:'`1256 echo 'Detected Slackware Linux:' 1268 1257 if [ -e "/etc/rc.d/rc.i2p" -o -f "/etc/rc.d/rc.i2p.new" ]; then 1269 1258 echo "Found initscript from I2P Slackpkg. Aborting." >&2 … … 1271 1260 else 1272 1261 if grep -q ${APP_NAME}router /etc/rc.d/rc.local > /dev/null 2>&1; then 1273 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1262 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1274 1263 exit 1 1275 1264 else … … 1283 1272 fi 1284 1273 elif [ -f /etc/arch-release ]; then 1285 e val echo `gettext 'Detected Arch Linux:'`1274 echo 'Detected Arch Linux:' 1286 1275 if [ -f "/etc/rc.d/i2prouter" -o -f "/usr/lib/systemd/system/i2prouter.service" ]; then 1287 e val echo `gettext 'AUR package found. Refusing to continue.'`1276 echo 'AUR package found. Refusing to continue.' 1288 1277 exit 1 1289 1278 elif [ -f /etc/rc.d/i2p -a ! "$USE_SYSTEMD" = "1" ] || [ -f "$SYSTEMD_SERVICE" -a "$USE_SYSTEMD" = "1" ]; then 1290 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1279 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1291 1280 exit 1 1292 1281 else … … 1340 1329 chmod 755 /etc/rc.d/${APP_NAME} 1341 1330 chown root:root /etc/rc.d/${APP_NAME} 1342 e val echo `gettext ' The $APP_LONG_NAME daemon has been installed.'`1343 e val echo `gettext ' Add \"i2p\" to the DAEMONS variable in /etc/rc.conf to enable.'`1331 echo ' The $APP_LONG_NAME daemon has been installed.' 1332 echo ' Add \"i2p\" to the DAEMONS variable in /etc/rc.conf to enable.' 1344 1333 else 1345 1334 # We'll end up here if systemd is enabled. … … 1353 1342 fi 1354 1343 elif [ -f /etc/SuSE-release ] ; then 1355 e val echo `gettext 'Detected SuSE or SLES:'`1344 echo 'Detected SuSE or SLES:' 1356 1345 if [ -f /etc/rc.d/${APP_NAME} -a ! "$USE_SYSTEMD" = "1" ] || [ -f "$SYSTEMD_SERVICE" -a "$USE_SYSTEMD" = "1" ]; then 1357 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1346 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1358 1347 exit 1 1359 1348 else 1360 1349 if [ ! -f "/etc/init.d/$APP_NAME" ]; then 1361 1350 if [ "$USE_SYSTEMD" != "1" ]; then 1362 eval echo `gettext ' Installing the $APP_LONG_NAME daemon..'`1351 eval echo " `gettext 'Installing the $APP_LONG_NAME daemon'`.." 1363 1352 ln -s "$REALPATH" "/etc/init.d/$APP_NAME" 1364 1353 sed -i "s/Default-Start: 2 3 4 5/Default-Start: 5/" $0 … … 1373 1362 fi 1374 1363 elif [ -f /etc/lsb-release -o -f /etc/debian_version ] ; then 1375 e val echo `gettext 'Detected Debian-based distribution:'`1364 echo 'Detected Debian-based distribution:' 1376 1365 if [ -f "/etc/init.d/$APP_NAME" -o -f "/etc/init/${APP_NAME}.conf" ] ; then 1377 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1366 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1378 1367 exit 1 1379 1368 else … … 1381 1370 installUpstart 1382 1371 else 1383 e val echo `gettext ' Installing the $APP_LONG_NAME daemon using init.d..'`1372 echo ' Installing the $APP_LONG_NAME daemon using init.d..' 1384 1373 ln -s "$REALPATH" "/etc/init.d/$APP_NAME" 1385 1374 update-rc.d "$APP_NAME" defaults … … 1387 1376 fi 1388 1377 else 1389 e val echo `gettext 'Detected Linux:'`1378 echo 'Detected Linux:' 1390 1379 if [ -f "/etc/init.d/$APP_NAME" ] ; then 1391 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1380 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1392 1381 exit 1 1393 1382 else 1394 eval echo `gettext ' Installing the $APP_LONG_NAME daemon..'`1383 eval echo " `gettext 'Installing the $APP_LONG_NAME daemon'`.." 1395 1384 ln -s "$REALPATH" /etc/init.d/$APP_NAME 1396 1385 ln -s "/etc/init.d/$APP_NAME" "/etc/rc3.d/K20$APP_NAME_LOWER" … … 1401 1390 fi 1402 1391 elif [ "$DIST_OS" = "hpux" ] ; then 1403 e val echo `gettext 'Detected HP-UX:'`1392 echo 'Detected HP-UX:' 1404 1393 if [ -f "/sbin/init.d/$APP_NAME" ] ; then 1405 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1406 exit 1 1407 else 1408 eval echo `gettext ' Installing the $APP_LONG_NAME daemon..'`1394 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1395 exit 1 1396 else 1397 eval echo " `gettext 'Installing the $APP_LONG_NAME daemon'`.." 1409 1398 ln -s "$REALPATH" "/sbin/init.d/$APP_NAME" 1410 1399 ln -s "/sbin/init.d/$APP_NAME" "/sbin/rc3.d/K20$APP_NAME_LOWER" … … 1412 1401 fi 1413 1402 elif [ "$DIST_OS" = "aix" ] ; then 1414 e val echo `gettext 'Detected AIX:'`1403 echo 'Detected AIX:' 1415 1404 if [ -f "/etc/rc.d/init.d/$APP_NAME" ] ; then 1416 e val echo `gettext ' The $APP_LONG_NAME daemon is already installed as rc.d script.'`1405 echo ' The $APP_LONG_NAME daemon is already installed as rc.d script.' 1417 1406 exit 1 1418 1407 elif [ -n "`/usr/sbin/lsitab $APP_NAME`" -a -n "`/usr/bin/lssrc -S -s $APP_NAME`" ] ; then 1419 e val echo `gettext ' The $APP_LONG_NAME daemon is already installed as SRC service.'`1420 exit 1 1421 else 1422 eval echo `gettext ' Installing the $APP_LONG_NAME daemon..'`1408 echo ' The $APP_LONG_NAME daemon is already installed as SRC service.' 1409 exit 1 1410 else 1411 eval echo " `gettext 'Installing the $APP_LONG_NAME daemon'`.." 1423 1412 if [ -n "`/usr/sbin/lsitab install_assist`" ] ; then 1424 e val echo `gettext ' The task /usr/sbin/install_assist was found in the inittab, this might cause problems for all subsequent tasks to launch at this process is known to block the init task. Please make sure this task is not needed anymore and remove/deactivate it.'`1413 echo ' The task /usr/sbin/install_assist was found in the inittab, this might cause problems for all subsequent tasks to launch at this process is known to block the init task. Please make sure this task is not needed anymore and remove/deactivate it.' 1425 1414 fi 1426 1415 /usr/bin/mkssys -s "$APP_NAME" -p "$REALPATH" -a "launchdinternal" -u 0 -f 9 -n 15 -S … … 1429 1418 fi 1430 1419 elif [ "$DIST_OS" = "freebsd" ] ; then 1431 e val echo `gettext 'Detected FreeBSD:'`1420 echo 'Detected FreeBSD:' 1432 1421 if [ -f "/etc/rc.d/$APP_NAME" ] ; then 1433 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1434 exit 1 1435 else 1436 eval echo `gettext ' Installing the $APP_LONG_NAME daemon..'`1422 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1423 exit 1 1424 else 1425 eval echo " `gettext 'Installing the $APP_LONG_NAME daemon'`.." 1437 1426 sed -i .bak "/${APP_NAME}_enable=\"YES\"/d" /etc/rc.conf 1438 1427 if [ -f "${REALDIR}/${APP_NAME}.install" ] ; then … … 1467 1456 fi 1468 1457 elif [ "$DIST_OS" = "macosx" ] ; then 1469 e val echo `gettext 'Detected Mac OSX:'`1458 echo 'Detected Mac OSX:' 1470 1459 if [ -f "/Library/LaunchDaemons/${APP_PLIST}" ] ; then 1471 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1472 exit 1 1473 else 1474 eval echo `gettext ' Installing the $APP_LONG_NAME daemon..'`1460 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1461 exit 1 1462 else 1463 eval echo " `gettext 'Installing the $APP_LONG_NAME daemon'`.." 1475 1464 if [ -f "${REALDIR}/${APP_PLIST}" ] ; then 1476 1465 ln -s "${REALDIR}/${APP_PLIST}" "/Library/LaunchDaemons/${APP_PLIST}" … … 1502 1491 fi 1503 1492 elif [ "$DIST_OS" = "zos" ] ; then 1504 e val echo `gettext 'Detected z/OS:'`1493 echo 'Detected z/OS:' 1505 1494 if [ -f /etc/rc.bak ] ; then 1506 eval echo `gettext ' The $APP_LONG_NAME daemon is already installed.'`1507 exit 1 1508 else 1509 eval echo `gettext ' Installing the $APP_LONG_NAME daemon..'`1495 eval echo " `gettext 'The $APP_LONG_NAME daemon is already installed.'`" 1496 exit 1 1497 else 1498 eval echo " `gettext 'Installing the $APP_LONG_NAME daemon'`.." 1510 1499 cp /etc/rc /etc/rc.bak 1511 1500 sed "s:echo /etc/rc script executed, \`date\`::g" /etc/rc.bak > /etc/rc … … 1528 1517 APP_NAME_LOWER=`echo "$APP_NAME" | $TREXE "[A-Z]" "[a-z]"` 1529 1518 if [ "$DIST_OS" = "solaris" ] ; then 1530 e val echo `gettext 'Detected Solaris:'`1519 echo 'Detected Solaris:' 1531 1520 if [ -f "/etc/init.d/$APP_NAME" ] ; then 1532 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1521 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1533 1522 for i in "/etc/rc3.d/S20$APP_NAME_LOWER" "/etc/rc3.d/K20$APP_NAME_LOWER" "/etc/init.d/$APP_NAME" 1534 1523 do … … 1536 1525 done 1537 1526 else 1538 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1527 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1539 1528 exit 1 1540 1529 fi 1541 1530 elif [ "$DIST_OS" = "linux" ] ; then 1542 1531 if [ -f /etc/redhat-release -o -f /etc/redhat_version -o -f /etc/fedora-release ] ; then 1543 e val echo `gettext 'Detected RHEL or Fedora:'`1532 echo 'Detected RHEL or Fedora:' 1544 1533 if [ -f "/etc/init.d/$APP_NAME" ] ; then 1545 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1534 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1546 1535 /sbin/chkconfig "$APP_NAME" off 1547 1536 /sbin/chkconfig --del "$APP_NAME" 1548 1537 rm -f "/etc/init.d/$APP_NAME" 1549 1538 elif [ -f "/etc/init/${APP_NAME}.conf" ] ; then 1550 e val echo `gettext ' Removing $APP_LONG_NAME daemon from upstart...'`1539 echo ' Removing $APP_LONG_NAME daemon from upstart...' 1551 1540 rm "/etc/init/${APP_NAME}.conf" 1552 1541 else 1553 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1542 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1554 1543 exit 1 1555 1544 fi 1556 1545 elif [ -f /etc/slackware-version ] ; then 1557 e val echo `gettext 'Detected Slackware Linux:'`1546 echo 'Detected Slackware Linux:' 1558 1547 if grep -q ${APP_NAME}router /etc/rc.d/rc.local > /dev/null 2>&1 ; then 1559 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1548 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1560 1549 sed -i "/i2prouter/d" /etc/rc.d/rc.local /etc/rc.d/rc.local_shutdown 1561 1550 else 1562 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1551 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1563 1552 exit 1 1564 1553 fi 1565 1554 elif [ -f /etc/arch-release ] ; then 1566 e val echo `gettext 'Detected Arch Linux:'`1555 echo 'Detected Arch Linux:' 1567 1556 if [ -f "/etc/rc.d/$APP_NAME" -o -f "$SYSTEMD_SERVICE" ] ; then 1568 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1557 eval echo "`gettext 'Removing $APP_LONG_NAME daemon'`..." 1569 1558 rm -f "/etc/rc.d/$APP_NAME" 1570 1559 rm -f "$SYSTEMD_SERVICE" 1571 1560 else 1572 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1561 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1573 1562 exit 1 1574 1563 fi 1575 1564 elif [ -f /etc/SuSE-release ] ; then 1576 e val echo `gettext 'Detected SuSE or SLES:'`1565 echo 'Detected SuSE or SLES:' 1577 1566 if [ -f "/etc/init.d/$APP_NAME" -o ${SYSTEMD_SERVICE} ] ; then 1578 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1567 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1579 1568 insserv -r "/etc/init.d/$APP_NAME" 1580 1569 rm -f "/etc/init.d/$APP_NAME" 1581 1570 rm -f "$SYSTEMD_SERVICE" 1582 1571 else 1583 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1572 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1584 1573 exit 1 1585 1574 fi 1586 1575 elif [ -f /etc/lsb-release -o -f /etc/debian_version ] ; then 1587 e val echo `gettext 'Detected Debian-based distribution:'`1576 echo 'Detected Debian-based distribution:' 1588 1577 if [ -f "/etc/init.d/$APP_NAME" ] ; then 1589 e val echo `gettext ' Removing $APP_LONG_NAME daemon from init.d...'`1578 echo ' Removing $APP_LONG_NAME daemon from init.d...' 1590 1579 update-rc.d -f "$APP_NAME" remove 1591 1580 rm -f "/etc/init.d/$APP_NAME" 1592 1581 elif [ -f "/etc/init/${APP_NAME}.conf" ] ; then 1593 e val echo `gettext ' Removing $APP_LONG_NAME daemon from upstart...'`1582 echo ' Removing $APP_LONG_NAME daemon from upstart...' 1594 1583 rm "/etc/init/${APP_NAME}.conf" 1595 1584 else 1596 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1585 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1597 1586 exit 1 1598 1587 fi 1599 1588 else 1600 e val echo `gettext 'Detected Linux:'`1589 echo 'Detected Linux:' 1601 1590 if [ -f "/etc/init.d/$APP_NAME" ] ; then 1602 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1591 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1603 1592 for i in "/etc/rc3.d/K20$APP_NAME_LOWER" "/etc/rc5.d/K20$APP_NAME_LOWER" "/etc/rc3.d/S20$APP_NAME_LOWER" "/etc/init.d/$APP_NAME" "/etc/rc5.d/S20$APP_NAME_LOWER" 1604 1593 do … … 1606 1595 done 1607 1596 else 1608 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1597 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1609 1598 exit 1 1610 1599 fi 1611 1600 fi 1612 1601 elif [ "$DIST_OS" = "hpux" ] ; then 1613 e val echo `gettext 'Detected HP-UX:'`1602 echo 'Detected HP-UX:' 1614 1603 if [ -f "/sbin/init.d/$APP_NAME" ] ; then 1615 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1604 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1616 1605 for i in "/sbin/rc3.d/K20$APP_NAME_LOWER" "/sbin/rc3.d/S20$APP_NAME_LOWER" "/sbin/init.d/$APP_NAME" 1617 1606 do … … 1619 1608 done 1620 1609 else 1621 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1610 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1622 1611 exit 1 1623 1612 fi 1624 1613 elif [ "$DIST_OS" = "aix" ] ; then 1625 e val echo `gettext 'Detected AIX:'`1614 echo 'Detected AIX:' 1626 1615 if [ -f "/etc/rc.d/init.d/$APP_NAME" -o -n "`/usr/sbin/lsitab $APP_NAME`" -o -n "`/usr/bin/lssrc -S -s $APP_NAME`" ] ; then 1627 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1616 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1628 1617 if [ -f "/etc/rc.d/init.d/$APP_NAME" ] ; then 1629 1618 for i in "/etc/rc.d/rc2.d/S20$APP_NAME_LOWER" "/etc/rc.d/rc2.d/K20$APP_NAME_LOWER" "/etc/rc.d/init.d/$APP_NAME" … … 1637 1626 fi 1638 1627 else 1639 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1628 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1640 1629 exit 1 1641 1630 fi 1642 1631 elif [ "$DIST_OS" = "freebsd" ] ; then 1643 e val echo `gettext 'Detected FreeBSD:'`1632 echo 'Detected FreeBSD:' 1644 1633 if [ -f "/etc/rc.d/$APP_NAME" ] ; then 1645 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1634 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1646 1635 for i in "/etc/rc.d/$APP_NAME" 1647 1636 do … … 1650 1639 sed -i .bak "/${APP_NAME}_enable=\"YES\"/d" /etc/rc.conf 1651 1640 else 1652 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1641 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1653 1642 exit 1 1654 1643 fi 1655 1644 elif [ "$DIST_OS" = "macosx" ] ; then 1656 e val echo `gettext 'Detected Mac OSX:'`1645 echo 'Detected Mac OSX:' 1657 1646 if [ -f "/Library/LaunchDaemons/${APP_PLIST}" ] ; then 1658 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1647 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1659 1648 # Make sure the plist is installed 1660 1649 LOADED_PLIST=`launchctl list | grep ${APP_PLIST_BASE}` … … 1664 1653 rm -f "/Library/LaunchDaemons/${APP_PLIST}" 1665 1654 else 1666 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1655 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1667 1656 exit 1 1668 1657 fi 1669 1658 elif [ "$DIST_OS" = "zos" ] ; then 1670 e val echo `gettext 'Detected z/OS:'`1659 echo 'Detected z/OS:' 1671 1660 if [ -f /etc/rc.bak ] ; then 1672 eval echo `gettext ' Removing $APP_LONG_NAME daemon...'`1661 eval echo " `gettext 'Removing $APP_LONG_NAME daemon'`..." 1673 1662 cp /etc/rc /etc/rc.bak 1674 1663 sed "s/_BPX_JOBNAME=\'APP_NAME\'.*//g" /etc/rc.bak > /etc/rc 1675 1664 rm /etc/rc.bak 1676 1665 else 1677 eval echo `gettext ' The $APP_LONG_NAME daemon is not currently installed.'`1666 eval echo " `gettext 'The $APP_LONG_NAME daemon is not currently installed.'`" 1678 1667 exit 1 1679 1668 fi … … 1686 1675 1687 1676 dump() { 1688 e val echo `gettext 'Dumping $APP_LONG_NAME...'`1677 echo 'Dumping $APP_LONG_NAME...' 1689 1678 getpid 1690 1679 if [ "X$pid" = "X" ] … … 1696 1685 if [ $? -ne 0 ] 1697 1686 then 1698 e val echo `gettext 'Failed to dump $APP_LONG_NAME.'`1687 echo 'Failed to dump $APP_LONG_NAME.' 1699 1688 exit 1 1700 1689 else 1701 e val echo `gettext 'Dumped $APP_LONG_NAME.'`1690 echo 'Dumped $APP_LONG_NAME.' 1702 1691 fi 1703 1692 fi … … 1709 1698 if [ "X$pid" = "X" ] 1710 1699 then 1711 e val echo `gettext 'Starting $APP_LONG_NAME... Wrapper:Stopped'`1700 echo 'Starting $APP_LONG_NAME... Wrapper:Stopped' 1712 1701 else 1713 1702 if [ "X$DETAIL_STATUS" = "X" ] 1714 1703 then 1715 e val echo `gettext 'Starting $APP_LONG_NAME... Wrapper:Running'`1704 echo 'Starting $APP_LONG_NAME... Wrapper:Running' 1716 1705 else 1717 1706 getstatus 1718 e val echo `gettext 'Starting $APP_LONG_NAME... Wrapper:$STATUS, Java:$JAVASTATUS'`1707 echo 'Starting $APP_LONG_NAME... Wrapper:$STATUS, Java:$JAVASTATUS' 1719 1708 fi 1720 1709 fi … … 1726 1715 if [ "X$pid" = "X" ] 1727 1716 then 1728 e val echo `gettext 'Stopping $APP_LONG_NAME... Wrapper:Stopped'`1717 echo 'Stopping $APP_LONG_NAME... Wrapper:Stopped' 1729 1718 else 1730 1719 if [ "X$DETAIL_STATUS" = "X" ] 1731 1720 then 1732 e val echo `gettext 'Stopping $APP_LONG_NAME... Wrapper:Running'`1721 echo 'Stopping $APP_LONG_NAME... Wrapper:Running' 1733 1722 else 1734 1723 getstatus 1735 e val echo `gettext 'Stopping $APP_LONG_NAME... Wrapper:$STATUS, Java:$JAVASTATUS'`1724 echo 'Stopping $APP_LONG_NAME... Wrapper:$STATUS, Java:$JAVASTATUS' 1736 1725 fi 1737 1726 fi … … 1743 1732 if [ -n "$1" ] 1744 1733 then 1745 e val echo `gettext 'Unexpected command: $1'`1734 echo 'Unexpected command: $1' 1746 1735 echo ""; 1747 1736 fi 1748 1737 1749 eval MSG=`gettext 'Usage: '`1738 MSG='Usage: ' 1750 1739 if [ -n "$FIXED_COMMAND" ] ; then 1751 1740 if [ -n "$PASS_THROUGH" ] ; then … … 1755 1744 fi 1756 1745 else 1757 if [ -n "$PAUSABLE" ] ; then1758 if [ -n "$PASS_THROUGH" ] ; then1759 echo "${MSG} $0 [ console {JavaAppArgs} | start {JavaAppArgs} | stop | restart {JavaAppArgs} | condrestart {JavaAppArgs} | pause | resume | status | install | remove | dump ]"1760 else1761 echo "${MSG} $0 [ console | start | stop | restart | condrestart | pause | resume | status | install | remove | dump ]"1762 fi1763 else1764 1746 if [ -n "$PASS_THROUGH" ] ; then 1765 1747 echo "${MSG} $0 [ console {JavaAppArgs} | start {JavaAppArgs} | stop | restart {JavaAppArgs} | condrestart {JavaAppArgs} | status | install | remove | dump ]" 1766 1748 else 1767 1749 echo "${MSG} $0 [ console | start | stop | restart | condrestart | status | install | remove | dump ]" 1768 fi1769 1750 fi 1770 1751 fi … … 1775 1756 if [ ! -n "$FIXED_COMMAND" ] ; then 1776 1757 echo "`gettext 'Commands:'`" 1777 echo "`gettext ' console Launch in the current console.'`" 1778 echo "`gettext ' start Start in the background as a daemon process.'`" 1779 echo "`gettext ' stop Stop if running as a daemon or in another console.'`" 1780 echo "`gettext ' graceful Stop gracefully, may take up to 11 minutes.'`" 1781 echo "`gettext ' restart Stop if running and then start.'`" 1782 echo "`gettext ' condrestart Restart only if already running.'`" 1783 if [ -n "$PAUSABLE" ] ; then 1784 echo "`gettext ' pause Pause if running.'`" 1785 echo "`gettext ' resume Resume if paused.'`" 1786 fi 1787 echo "`gettext ' status Query the current status.'`" 1788 echo "`gettext ' install Install to start automatically when system boots.'`" 1789 echo "`gettext ' remove Uninstall.'`" 1790 echo "`gettext ' dump Request a Java thread dump if running.'`" 1758 echo " console `gettext 'Launch in the current console.'`" 1759 echo " start `gettext 'Start in the background as a daemon process.'`" 1760 echo " stop `gettext 'Stop if running as a daemon or in another console.'`" 1761 echo " graceful `gettext 'Stop gracefully, may take up to 11 minutes.'`" 1762 echo " restart `gettext 'Stop if running and then start.'`" 1763 echo " condrestart `gettext 'Restart only if already running.'`" 1764 echo " status `gettext 'Query the current status.'`" 1765 echo " install `gettext 'Install to start automatically when system boots.'`" 1766 echo " remove `gettext 'Uninstall.'`" 1767 echo " dump `gettext 'Request a Java thread dump if running.'`" 1791 1768 echo ""; 1792 1769 fi 1793 1770 if [ -n "$PASS_THROUGH" ] ; then 1794 echo " `gettext 'JavaAppArgs: Zero or more arguments which will be passed to the Java application.'`"1771 echo "JavaAppArgs: Zero or more arguments which will be passed to the Java application." 1795 1772 echo ""; 1796 1773 fi … … 1801 1778 1802 1779 showsetusermesg() { 1803 echo " Please edit $0 and set the variable RUN_AS_USER."1780 echo "`gettext 'Please edit $0 and set the variable RUN_AS_USER'`." 1804 1781 } 1805 1782 1806 1783 checkifstartingasroot() { 1807 1784 if [ ! `grep ^RUN_AS_USER $0` ] && [ ! `grep ^ALLOW_ROOT $0` ] && [ `id -ur` = '0' ]; then 1808 echo " Running I2P as the root user is *not* recommended."1785 echo "`gettext 'Running I2P as the root user is *not* recommended.'`" 1809 1786 showsetusermesg 1810 1787 echo 1811 echo "If you'd like to run as root anyway you can edit" 1812 echo "$0 and set ALLOW_ROOT=true instead." 1788 echo "`gettext 'To run as root anyway, edit $0 and set ALLOW_ROOT=true.'`" 1813 1789 exit 1 1814 1790 fi … … 1870 1846 ;; 1871 1847 1872 'pause')1873 if [ -n "$PAUSABLE" ]1874 then1875 pause1876 else1877 showUsage "$COMMAND"1878 fi1879 ;;1880 1881 'resume')1882 if [ -n "$PAUSABLE" ]1883 then1884 resume1885 else1886 showUsage "$COMMAND"1887 fi1888 ;;1889 1890 1848 'status') 1891 1849 checkUser "" "$COMMAND" -
installer/resources/locale/po/messages_de.po
r69d22b8 r9a241af 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2012- 07-26 19:55+0000\n"11 "POT-Creation-Date: 2012-12-22 15:07+0000\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 18 18 "Content-Transfer-Encoding: 8bit\n" 19 19 20 #: ../i2prouter: 31621 msgid " Unable to locate \"ps\"."20 #: ../i2prouter:195 21 msgid "Failed to load the wrapper" 22 22 msgstr "" 23 23 24 #: ../i2prouter:317 ../i2prouter:330 ../i2prouter:645 25 msgid "" 26 "Please report this message along with the location of the command on your " 27 "system." 28 msgstr "" 29 30 #: ../i2prouter:329 31 msgid "Unable to locate \"tr\"." 32 msgstr "" 33 34 #: ../i2prouter:484 35 msgid " $1 Found but not executable." 36 msgstr "" 37 38 #: ../i2prouter:543 39 msgid "Unable to locate any of the following binaries:" 40 msgstr "" 41 42 #: ../i2prouter:644 43 msgid "Unable to locate \"id\"." 44 msgstr "" 45 46 #: ../i2prouter:784 47 #, sh-format 48 msgid "Removed stale pid file: $PIDFILE" 49 msgstr "" 50 51 #: ../i2prouter:789 52 #, sh-format 53 msgid "Cannot read $PIDFILE." 54 msgstr "" 55 56 #: ../i2prouter:879 ../i2prouter:906 ../i2prouter:980 ../i2prouter:1008 57 #: ../i2prouter:1032 24 #: ../i2prouter:892 ../i2prouter:919 ../i2prouter:993 ../i2prouter:1021 25 #: ../i2prouter:1045 58 26 #, sh-format 59 27 msgid "$APP_LONG_NAME is already running." 60 28 msgstr "" 61 29 62 #: ../i2prouter: 89030 #: ../i2prouter:903 63 31 #, sh-format 64 msgid "Running $APP_LONG_NAME ..."32 msgid "Running $APP_LONG_NAME" 65 33 msgstr "" 66 34 67 #: ../i2prouter:9 1335 #: ../i2prouter:926 68 36 #, sh-format 69 msgid "Waiting for $APP_LONG_NAME ..."37 msgid "Waiting for $APP_LONG_NAME" 70 38 msgstr "" 71 39 72 #: ../i2prouter:9 6040 #: ../i2prouter:973 73 41 #, sh-format 74 msgid " 42 msgid "WARNING: $APP_LONG_NAME may have failed to start." 75 43 msgstr "" 76 44 77 #: ../i2prouter:963 78 #, sh-format 79 msgid " running: PID:$pid" 80 msgstr "" 81 82 #: ../i2prouter:972 83 #, sh-format 84 msgid "" 85 "Starting $APP_LONG_NAME. Detected Mac OSX and installed launchd daemon." 86 msgstr "" 87 88 #: ../i2prouter:974 ../i2prouter:1002 ../i2prouter:1190 ../i2prouter:1442 45 #: ../i2prouter:987 ../i2prouter:1015 ../i2prouter:1224 ../i2prouter:1513 89 46 msgid "Must be root to perform this action." 90 47 msgstr "" 91 48 92 #: ../i2prouter:10 0049 #: ../i2prouter:1031 93 50 #, sh-format 94 msgid "Starting $APP_LONG_NAME . Detected Linux and installed upstart."51 msgid "Starting $APP_LONG_NAME" 95 52 msgstr "" 96 53 97 #: ../i2prouter:10 1854 #: ../i2prouter:1056 98 55 #, sh-format 99 msgid "St arting $APP_LONG_NAME..."56 msgid "Stopping $APP_LONG_NAME" 100 57 msgstr "" 101 58 102 #: ../i2prouter:1043 103 #, sh-format 104 msgid "Stopping $APP_LONG_NAME..." 105 msgstr "" 106 107 #: ../i2prouter:1047 ../i2prouter:1115 ../i2prouter:1599 59 #: ../i2prouter:1060 ../i2prouter:1128 ../i2prouter:1681 108 60 #, sh-format 109 61 msgid "$APP_LONG_NAME was not running." 110 62 msgstr "" 111 63 112 #: ../i2prouter:10 60 ../i2prouter:1068 ../i2prouter:1130 ../i2prouter:113864 #: ../i2prouter:1073 ../i2prouter:1081 ../i2prouter:1143 ../i2prouter:1151 113 65 #, sh-format 114 66 msgid "Unable to stop $APP_LONG_NAME." 115 67 msgstr "" 116 68 117 #: ../i2prouter:10 8669 #: ../i2prouter:1099 118 70 #, sh-format 119 msgid "Waiting for $APP_LONG_NAME to exit ..."71 msgid "Waiting for $APP_LONG_NAME to exit" 120 72 msgstr "" 121 73 122 #: ../i2prouter:11 0074 #: ../i2prouter:1113 123 75 #, sh-format 124 76 msgid "Failed to stop $APP_LONG_NAME." 125 77 msgstr "" 126 78 127 #: ../i2prouter:11 0379 #: ../i2prouter:1116 128 80 #, sh-format 129 81 msgid "Stopped $APP_LONG_NAME." 130 82 msgstr "" 131 83 132 #: ../i2prouter:11 1184 #: ../i2prouter:1124 133 85 #, sh-format 134 msgid "Stopping $APP_LONG_NAME gracefully ..."86 msgid "Stopping $APP_LONG_NAME gracefully" 135 87 msgstr "" 136 88 137 #: ../i2prouter:1146 138 #, sh-format 139 msgid "Pausing $APP_LONG_NAME." 140 msgstr "" 141 142 #: ../i2prouter:1150 143 #, sh-format 144 msgid "Resuming $APP_LONG_NAME." 145 msgstr "" 146 147 #: ../i2prouter:1157 89 #: ../i2prouter:1170 148 90 #, sh-format 149 91 msgid "$APP_LONG_NAME is not running." 150 92 msgstr "" 151 93 152 #: ../i2prouter:11 6294 #: ../i2prouter:1175 153 95 #, sh-format 154 96 msgid "$APP_LONG_NAME is running: PID:$pid" 155 97 msgstr "" 156 98 157 #: ../i2prouter:11 6599 #: ../i2prouter:1178 158 100 #, sh-format 159 101 msgid "$APP_LONG_NAME is running: PID:$pid, Wrapper:$STATUS, Java:$JAVASTATUS" 160 102 msgstr "" 161 103 162 #: ../i2prouter:1172 104 #: ../i2prouter:1231 ../i2prouter:1243 ../i2prouter:1262 ../i2prouter:1279 105 #: ../i2prouter:1346 ../i2prouter:1366 ../i2prouter:1380 ../i2prouter:1394 106 #: ../i2prouter:1422 ../i2prouter:1460 ../i2prouter:1495 163 107 #, sh-format 164 msgid " Installing the $APP_LONG_NAME daemon using upstart.."108 msgid "The $APP_LONG_NAME daemon is already installed." 165 109 msgstr "" 166 110 167 #: ../i2prouter:1174 111 #: ../i2prouter:1234 ../i2prouter:1249 ../i2prouter:1351 ../i2prouter:1383 112 #: ../i2prouter:1397 ../i2prouter:1411 ../i2prouter:1425 ../i2prouter:1463 113 #: ../i2prouter:1498 168 114 #, sh-format 169 msgid " a custom upstart conf file ${APP_NAME}.conf found"115 msgid "Installing the $APP_LONG_NAME daemon" 170 116 msgstr "" 171 117 172 #: ../i2prouter:1177 173 msgid " creating default upstart conf file.." 174 msgstr "" 175 176 #: ../i2prouter:1195 ../i2prouter:1448 177 msgid "Detected Solaris:" 178 msgstr "" 179 180 #: ../i2prouter:1197 ../i2prouter:1209 ../i2prouter:1227 ../i2prouter:1284 181 #: ../i2prouter:1295 ../i2prouter:1309 ../i2prouter:1323 ../i2prouter:1351 182 #: ../i2prouter:1389 ../i2prouter:1424 183 #, sh-format 184 msgid " The $APP_LONG_NAME daemon is already installed." 185 msgstr "" 186 187 #: ../i2prouter:1200 ../i2prouter:1215 ../i2prouter:1287 ../i2prouter:1312 188 #: ../i2prouter:1326 ../i2prouter:1340 ../i2prouter:1354 ../i2prouter:1392 189 #: ../i2prouter:1427 190 #, sh-format 191 msgid " Installing the $APP_LONG_NAME daemon.." 192 msgstr "" 193 194 #: ../i2prouter:1207 ../i2prouter:1461 195 msgid "Detected RHEL or Fedora:" 196 msgstr "" 197 198 #: ../i2prouter:1222 ../i2prouter:1475 199 msgid "Detected Arch Linux:" 200 msgstr "" 201 202 #: ../i2prouter:1224 203 msgid "Initscript from AUR package found. Refusing to continue." 204 msgstr "" 205 206 #: ../i2prouter:1277 207 #, sh-format 208 msgid " The $APP_LONG_NAME daemon has been installed." 209 msgstr "" 210 211 #: ../i2prouter:1278 212 msgid " Add \\\"i2p\\\" to the DAEMONS variable in /etc/rc.conf to enable." 213 msgstr "" 214 215 #: ../i2prouter:1282 ../i2prouter:1484 216 msgid "Detected SuSE or SLES:" 217 msgstr "" 218 219 #: ../i2prouter:1293 ../i2prouter:1494 220 msgid "Detected Debian-based distribution:" 221 msgstr "" 222 223 #: ../i2prouter:1301 224 #, sh-format 225 msgid " Installing the $APP_LONG_NAME daemon using init.d.." 226 msgstr "" 227 228 #: ../i2prouter:1307 ../i2prouter:1507 229 msgid "Detected Linux:" 230 msgstr "" 231 232 #: ../i2prouter:1321 ../i2prouter:1520 233 msgid "Detected HP-UX:" 234 msgstr "" 235 236 #: ../i2prouter:1332 ../i2prouter:1532 237 msgid "Detected AIX:" 238 msgstr "" 239 240 #: ../i2prouter:1334 241 #, sh-format 242 msgid " The $APP_LONG_NAME daemon is already installed as rc.d script." 243 msgstr "" 244 245 #: ../i2prouter:1337 246 #, sh-format 247 msgid " The $APP_LONG_NAME daemon is already installed as SRC service." 248 msgstr "" 249 250 #: ../i2prouter:1342 251 msgid "" 252 " The task /usr/sbin/install_assist was found in the inittab, this might " 253 "cause problems for all subsequent tasks to launch at this process is known " 254 "to block the init task. Please make sure this task is not needed anymore and " 255 "remove/deactivate it." 256 msgstr "" 257 258 #: ../i2prouter:1349 ../i2prouter:1550 259 msgid "Detected FreeBSD:" 260 msgstr "" 261 262 #: ../i2prouter:1387 ../i2prouter:1563 263 msgid "Detected Mac OSX:" 264 msgstr "" 265 266 #: ../i2prouter:1422 ../i2prouter:1577 267 msgid "Detected z/OS:" 268 msgstr "" 269 270 #: ../i2prouter:1434 118 #: ../i2prouter:1505 271 119 #, sh-format 272 120 msgid "Install not currently supported for $DIST_OS" 273 121 msgstr "" 274 122 275 #: ../i2prouter:1 450 ../i2prouter:1463 ../i2prouter:1477 ../i2prouter:1486276 #: ../i2prouter:15 09 ../i2prouter:1522 ../i2prouter:1534 ../i2prouter:1552277 #: ../i2prouter:1 565 ../i2prouter:1579123 #: ../i2prouter:1521 ../i2prouter:1534 ../i2prouter:1548 ../i2prouter:1557 124 #: ../i2prouter:1567 ../i2prouter:1591 ../i2prouter:1604 ../i2prouter:1616 125 #: ../i2prouter:1634 ../i2prouter:1647 ../i2prouter:1661 278 126 #, sh-format 279 msgid " Removing $APP_LONG_NAME daemon..."127 msgid "Removing $APP_LONG_NAME daemon" 280 128 msgstr "" 281 129 282 #: ../i2prouter:1 456 ../i2prouter:1471 ../i2prouter:1480 ../i2prouter:1490283 #: ../i2prouter:15 03 ../i2prouter:1515 ../i2prouter:1528 ../i2prouter:1546284 #: ../i2prouter:1 559 ../i2prouter:1573 ../i2prouter:1584130 #: ../i2prouter:1527 ../i2prouter:1542 ../i2prouter:1551 ../i2prouter:1561 131 #: ../i2prouter:1572 ../i2prouter:1585 ../i2prouter:1597 ../i2prouter:1610 132 #: ../i2prouter:1628 ../i2prouter:1641 ../i2prouter:1655 ../i2prouter:1666 285 133 #, sh-format 286 msgid " 134 msgid "The $APP_LONG_NAME daemon is not currently installed." 287 135 msgstr "" 288 136 289 #: ../i2prouter:1468 ../i2prouter:1500 290 #, sh-format 291 msgid " Removing $APP_LONG_NAME daemon from upstart..." 292 msgstr "" 293 294 #: ../i2prouter:1496 295 #, sh-format 296 msgid " Removing $APP_LONG_NAME daemon from init.d..." 297 msgstr "" 298 299 #: ../i2prouter:1588 137 #: ../i2prouter:1670 300 138 #, sh-format 301 139 msgid "Remove not currently supported for $DIST_OS" 302 140 msgstr "" 303 141 304 #: ../i2prouter:1595 305 #, sh-format 306 msgid "Dumping $APP_LONG_NAME..." 307 msgstr "" 308 309 #: ../i2prouter:1605 310 #, sh-format 311 msgid "Failed to dump $APP_LONG_NAME." 312 msgstr "" 313 314 #: ../i2prouter:1608 315 #, sh-format 316 msgid "Dumped $APP_LONG_NAME." 317 msgstr "" 318 319 #: ../i2prouter:1618 320 #, sh-format 321 msgid "Starting $APP_LONG_NAME... Wrapper:Stopped" 322 msgstr "" 323 324 #: ../i2prouter:1622 325 #, sh-format 326 msgid "Starting $APP_LONG_NAME... Wrapper:Running" 327 msgstr "" 328 329 #: ../i2prouter:1625 330 #, sh-format 331 msgid "Starting $APP_LONG_NAME... Wrapper:$STATUS, Java:$JAVASTATUS" 332 msgstr "" 333 334 #: ../i2prouter:1635 335 #, sh-format 336 msgid "Stopping $APP_LONG_NAME... Wrapper:Stopped" 337 msgstr "" 338 339 #: ../i2prouter:1639 340 #, sh-format 341 msgid "Stopping $APP_LONG_NAME... Wrapper:Running" 342 msgstr "" 343 344 #: ../i2prouter:1642 345 #, sh-format 346 msgid "Stopping $APP_LONG_NAME... Wrapper:$STATUS, Java:$JAVASTATUS" 347 msgstr "" 348 349 #: ../i2prouter:1652 350 msgid "Unexpected command: $1" 351 msgstr "" 352 353 #: ../i2prouter:1656 354 msgid "Usage: " 355 msgstr "" 356 357 #: ../i2prouter:1683 142 #: ../i2prouter:1757 358 143 msgid "Commands:" 359 144 msgstr "" 360 145 361 #: ../i2prouter:1 684362 msgid " consoleLaunch in the current console."146 #: ../i2prouter:1758 147 msgid "Launch in the current console." 363 148 msgstr "" 364 149 365 #: ../i2prouter:1 685366 msgid " startStart in the background as a daemon process."150 #: ../i2prouter:1759 151 msgid "Start in the background as a daemon process." 367 152 msgstr "" 368 153 369 #: ../i2prouter:1 686370 msgid " stopStop if running as a daemon or in another console."154 #: ../i2prouter:1760 155 msgid "Stop if running as a daemon or in another console." 371 156 msgstr "" 372 157 373 #: ../i2prouter:1 687374 msgid " gracefulStop gracefully, may take up to 11 minutes."158 #: ../i2prouter:1761 159 msgid "Stop gracefully, may take up to 11 minutes." 375 160 msgstr "" 376 161 377 #: ../i2prouter:1 688378 msgid " restartStop if running and then start."162 #: ../i2prouter:1762 163 msgid "Stop if running and then start." 379 164 msgstr "" 380 165 381 #: ../i2prouter:1 689382 msgid " condrestartRestart only if already running."166 #: ../i2prouter:1763 167 msgid "Restart only if already running." 383 168 msgstr "" 384 169 385 #: ../i2prouter:1 691386 msgid " pause Pause if running."170 #: ../i2prouter:1764 171 msgid "Query the current status." 387 172 msgstr "" 388 173 389 #: ../i2prouter:1 692390 msgid " resume Resume if paused."174 #: ../i2prouter:1765 175 msgid "Install to start automatically when system boots." 391 176 msgstr "" 392 177 393 #: ../i2prouter:1 694394 msgid " status Query the current status."178 #: ../i2prouter:1766 179 msgid "Uninstall." 395 180 msgstr "" 396 181 397 #: ../i2prouter:1 695398 msgid " install Install to start automatically when system boots."182 #: ../i2prouter:1767 183 msgid "Request a Java thread dump if running." 399 184 msgstr "" 400 185 401 #: ../i2prouter:1 696402 msgid " remove Uninstall."186 #: ../i2prouter:1780 187 msgid "Please edit $0 and set the variable RUN_AS_USER" 403 188 msgstr "" 404 189 405 #: ../i2prouter:1 697406 msgid " dump Request a Java thread dump if running."190 #: ../i2prouter:1785 191 msgid "Running I2P as the root user is *not* recommended." 407 192 msgstr "" 408 193 409 #: ../i2prouter:1701 410 msgid "" 411 "JavaAppArgs: Zero or more arguments which will be passed to the Java " 412 "application." 194 #: ../i2prouter:1788 195 msgid "To run as root anyway, edit $0 and set ALLOW_ROOT=true." 413 196 msgstr "" -
installer/resources/locale/po/messages_en.po
r69d22b8 r9a241af 1 # SOME DESCRIPTIVE TITLE. 2 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 # This file is distributed under the same license as the PACKAGE package. 4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. 1 # I2P 2 # Copyright (C) 2012 The I2P Project 3 # This file is distributed under the same license as the routerconsole package. 4 # To contribute translations, see http://www.i2p2.de/newdevelopers 5 # foo <foo@bar>, 2012. 5 6 # 6 #, fuzzy7 7 msgid "" 8 8 msgstr "" 9 "Project-Id-Version: PACKAGE VERSION\n"9 "Project-Id-Version: I2P startup script\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2012- 08-25 19:38+0000\n"12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"14 "Language-Team: LANGUAGE <LL@li.org>\n"15 "Language: \n"11 "POT-Creation-Date: 2012-12-22 14:58+0000\n" 12 "PO-Revision-Date: 2012-12-21 23:34+0000\n" 13 "Last-Translator: kytv <killyourtv@mail.i2p>\n" 14 "Language-Team: English \n" 15 "Language: English\n" 16 16 "MIME-Version: 1.0\n" 17 17 "Content-Type: text/plain; charset=UTF-8\n" 18 18 "Content-Transfer-Encoding: 8bit\n" 19 "Plural-Forms: nplurals=2; plural=(n != 1)\n" 19 20 20 #: ../i2prouter: 31621 msgid " Unable to locate \"ps\"."21 #: ../i2prouter:195 22 msgid "Failed to load the wrapper" 22 23 msgstr "" 23 24 24 #: ../i2prouter:317 ../i2prouter:330 ../i2prouter:645 25 msgid "" 26 "Please report this message along with the location of the command on your " 27 "system." 28 msgstr "" 29 30 #: ../i2prouter:329 31 msgid "Unable to locate \"tr\"." 32 msgstr "" 33 34 #: ../i2prouter:484 35 msgid " $1 Found but not executable." 36 msgstr "" 37 38 #: ../i2prouter:543 39 msgid "Unable to locate any of the following binaries:" 40 msgstr "" 41 42 #: ../i2prouter:644 43 msgid "Unable to locate \"id\"." 44 msgstr "" 45 46 #: ../i2prouter:784 47 #, sh-format 48 msgid "Removed stale pid file: $PIDFILE" 49 msgstr "" 50 51 #: ../i2prouter:789 52 #, sh-format 53 msgid "Cannot read $PIDFILE." 54 msgstr "" 55 56 #: ../i2prouter:879 ../i2prouter:906 ../i2prouter:980 ../i2prouter:1008 57 #: ../i2prouter:1032 25 #: ../i2prouter:892 ../i2prouter:919 ../i2prouter:993 ../i2prouter:1021 26 #: ../i2prouter:1045 58 27 #, sh-format 59 28 msgid "$APP_LONG_NAME is already running." 60 29 msgstr "" 61 30 62 #: ../i2prouter: 89031 #: ../i2prouter:903 63 32 #, sh-format 64 msgid "Running $APP_LONG_NAME ..."33 msgid "Running $APP_LONG_NAME" 65 34 msgstr "" 66 35 67 #: ../i2prouter:9 1336 #: ../i2prouter:926 68 37 #, sh-format 69 msgid "Waiting for $APP_LONG_NAME ..."38 msgid "Waiting for $APP_LONG_NAME" 70 39 msgstr "" 71 40 72 #: ../i2prouter:9 6041 #: ../i2prouter:973 73 42 #, sh-format 74 msgid " 43 msgid "WARNING: $APP_LONG_NAME may have failed to start." 75 44 msgstr "" 76 45 77 #: ../i2prouter:963 78 #, sh-format 79 msgid " running: PID:$pid" 80 msgstr "" 81 82 #: ../i2prouter:972 83 #, sh-format 84 msgid "" 85 "Starting $APP_LONG_NAME. Detected Mac OSX and installed launchd daemon." 86 msgstr "" 87 88 #: ../i2prouter:974 ../i2prouter:1002 ../i2prouter:1190 ../i2prouter:1442 46 #: ../i2prouter:987 ../i2prouter:1015 ../i2prouter:1224 ../i2prouter:1513 89 47 msgid "Must be root to perform this action." 90 48 msgstr "" 91 49 92 #: ../i2prouter:10 0050 #: ../i2prouter:1031 93 51 #, sh-format 94 msgid "Starting $APP_LONG_NAME . Detected Linux and installed upstart."52 msgid "Starting $APP_LONG_NAME" 95 53 msgstr "" 96 54 97 #: ../i2prouter:10 1855 #: ../i2prouter:1056 98 56 #, sh-format 99 msgid "St arting $APP_LONG_NAME..."57 msgid "Stopping $APP_LONG_NAME" 100 58 msgstr "" 101 59 102 #: ../i2prouter:1043 103 #, sh-format 104 msgid "Stopping $APP_LONG_NAME..." 105 msgstr "" 106 107 #: ../i2prouter:1047 ../i2prouter:1115 ../i2prouter:1599 60 #: ../i2prouter:1060 ../i2prouter:1128 ../i2prouter:1681 108 61 #, sh-format 109 62 msgid "$APP_LONG_NAME was not running." 110 63 msgstr "" 111 64 112 #: ../i2prouter:10 60 ../i2prouter:1068 ../i2prouter:1130 ../i2prouter:113865 #: ../i2prouter:1073 ../i2prouter:1081 ../i2prouter:1143 ../i2prouter:1151 113 66 #, sh-format 114 67 msgid "Unable to stop $APP_LONG_NAME." 115 68 msgstr "" 116 69 117 #: ../i2prouter:10 8670 #: ../i2prouter:1099 118 71 #, sh-format 119 msgid "Waiting for $APP_LONG_NAME to exit ..."72 msgid "Waiting for $APP_LONG_NAME to exit" 120 73 msgstr "" 121 74 122 #: ../i2prouter:11 0075 #: ../i2prouter:1113 123 76 #, sh-format 124 77 msgid "Failed to stop $APP_LONG_NAME." 125 78 msgstr "" 126 79 127 #: ../i2prouter:11 0380 #: ../i2prouter:1116 128 81 #, sh-format 129 82 msgid "Stopped $APP_LONG_NAME." 130 83 msgstr "" 131 84 132 #: ../i2prouter:11 1185 #: ../i2prouter:1124 133 86 #, sh-format 134 msgid "Stopping $APP_LONG_NAME gracefully ..."87 msgid "Stopping $APP_LONG_NAME gracefully" 135 88 msgstr "" 136 89 137 #: ../i2prouter:1146 138 #, sh-format 139 msgid "Pausing $APP_LONG_NAME." 140 msgstr "" 141 142 #: ../i2prouter:1150 143 #, sh-format 144 msgid "Resuming $APP_LONG_NAME." 145 msgstr "" 146 147 #: ../i2prouter:1157 90 #: ../i2prouter:1170 148 91 #, sh-format 149 92 msgid "$APP_LONG_NAME is not running." 150 93 msgstr "" 151 94 152 #: ../i2prouter:11 6295 #: ../i2prouter:1175 153 96 #, sh-format 154 97 msgid "$APP_LONG_NAME is running: PID:$pid" 155 98 msgstr "" 156 99 157 #: ../i2prouter:11 65100 #: ../i2prouter:1178 158 101 #, sh-format 159 102 msgid "$APP_LONG_NAME is running: PID:$pid, Wrapper:$STATUS, Java:$JAVASTATUS" 160 103 msgstr "" 161 104 162 #: ../i2prouter:1172 105 #: ../i2prouter:1231 ../i2prouter:1243 ../i2prouter:1262 ../i2prouter:1279 106 #: ../i2prouter:1346 ../i2prouter:1366 ../i2prouter:1380 ../i2prouter:1394 107 #: ../i2prouter:1422 ../i2prouter:1460 ../i2prouter:1495 163 108 #, sh-format 164 msgid " Installing the $APP_LONG_NAME daemon using upstart.."109 msgid "The $APP_LONG_NAME daemon is already installed." 165 110 msgstr "" 166 111 167 #: ../i2prouter:1174 112 #: ../i2prouter:1234 ../i2prouter:1249 ../i2prouter:1351 ../i2prouter:1383 113 #: ../i2prouter:1397 ../i2prouter:1411 ../i2prouter:1425 ../i2prouter:1463 114 #: ../i2prouter:1498 168 115 #, sh-format 169 msgid " a custom upstart conf file ${APP_NAME}.conf found"116 msgid "Installing the $APP_LONG_NAME daemon" 170 117 msgstr "" 171 118 172 #: ../i2prouter:1177 173 msgid " creating default upstart conf file.." 174 msgstr "" 175 176 #: ../i2prouter:1195 ../i2prouter:1448 177 msgid "Detected Solaris:" 178 msgstr "" 179 180 #: ../i2prouter:1197 ../i2prouter:1209 ../i2prouter:1227 ../i2prouter:1284 181 #: ../i2prouter:1295 ../i2prouter:1309 ../i2prouter:1323 ../i2prouter:1351 182 #: ../i2prouter:1389 ../i2prouter:1424 183 #, sh-format 184 msgid " The $APP_LONG_NAME daemon is already installed." 185 msgstr "" 186 187 #: ../i2prouter:1200 ../i2prouter:1215 ../i2prouter:1287 ../i2prouter:1312 188 #: ../i2prouter:1326 ../i2prouter:1340 ../i2prouter:1354 ../i2prouter:1392 189 #: ../i2prouter:1427 190 #, sh-format 191 msgid " Installing the $APP_LONG_NAME daemon.." 192 msgstr "" 193 194 #: ../i2prouter:1207 ../i2prouter:1461 195 msgid "Detected RHEL or Fedora:" 196 msgstr "" 197 198 #: ../i2prouter:1222 ../i2prouter:1475 199 msgid "Detected Arch Linux:" 200 msgstr "" 201 202 #: ../i2prouter:1224 203 msgid "Initscript from AUR package found. Refusing to continue." 204 msgstr "" 205 206 #: ../i2prouter:1277 207 #, sh-format 208 msgid " The $APP_LONG_NAME daemon has been installed." 209 msgstr "" 210 211 #: ../i2prouter:1278 212 msgid " Add \\\"i2p\\\" to the DAEMONS variable in /etc/rc.conf to enable." 213 msgstr "" 214 215 #: ../i2prouter:1282 ../i2prouter:1484 216 msgid "Detected SuSE or SLES:" 217 msgstr "" 218 219 #: ../i2prouter:1293 ../i2prouter:1494 220 msgid "Detected Debian-based distribution:" 221 msgstr "" 222 223 #: ../i2prouter:1301 224 #, sh-format 225 msgid " Installing the $APP_LONG_NAME daemon using init.d.." 226 msgstr "" 227 228 #: ../i2prouter:1307 ../i2prouter:1507 229 msgid "Detected Linux:" 230 msgstr "" 231 232 #: ../i2prouter:1321 ../i2prouter:1520 233 msgid "Detected HP-UX:" 234 msgstr "" 235 236 #: ../i2prouter:1332 ../i2prouter:1532 237 msgid "Detected AIX:" 238 msgstr "" 239 240 #: ../i2prouter:1334 241 #, sh-format 242 msgid " The $APP_LONG_NAME daemon is already installed as rc.d script." 243 msgstr "" 244 245 #: ../i2prouter:1337 246 #, sh-format 247 msgid " The $APP_LONG_NAME daemon is already installed as SRC service." 248 msgstr "" 249 250 #: ../i2prouter:1342 251 msgid "" 252 " The task /usr/sbin/install_assist was found in the inittab, this might " 253 "cause problems for all subsequent tasks to launch at this process is known " 254 "to block the init task. Please make sure this task is not needed anymore and " 255 "remove/deactivate it." 256 msgstr "" 257 258 #: ../i2prouter:1349 ../i2prouter:1550 259 msgid "Detected FreeBSD:" 260 msgstr "" 261 262 #: ../i2prouter:1387 ../i2prouter:1563 263 msgid "Detected Mac OSX:" 264 msgstr "" 265 266 #: ../i2prouter:1422 ../i2prouter:1577 267 msgid "Detected z/OS:" 268 msgstr "" 269 270 #: ../i2prouter:1434 119 #: ../i2prouter:1505 271 120 #, sh-format 272 121 msgid "Install not currently supported for $DIST_OS" 273 122 msgstr "" 274 123 275 #: ../i2prouter:1 450 ../i2prouter:1463 ../i2prouter:1477 ../i2prouter:1486276 #: ../i2prouter:15 09 ../i2prouter:1522 ../i2prouter:1534 ../i2prouter:1552277 #: ../i2prouter:1 565 ../i2prouter:1579124 #: ../i2prouter:1521 ../i2prouter:1534 ../i2prouter:1548 ../i2prouter:1557 125 #: ../i2prouter:1567 ../i2prouter:1591 ../i2prouter:1604 ../i2prouter:1616 126 #: ../i2prouter:1634 ../i2prouter:1647 ../i2prouter:1661 278 127 #, sh-format 279 msgid " Removing $APP_LONG_NAME daemon..."128 msgid "Removing $APP_LONG_NAME daemon" 280 129 msgstr "" 281 130 282 #: ../i2prouter:1 456 ../i2prouter:1471 ../i2prouter:1480 ../i2prouter:1490283 #: ../i2prouter:15 03 ../i2prouter:1515 ../i2prouter:1528 ../i2prouter:1546284 #: ../i2prouter:1 559 ../i2prouter:1573 ../i2prouter:1584131 #: ../i2prouter:1527 ../i2prouter:1542 ../i2prouter:1551 ../i2prouter:1561 132 #: ../i2prouter:1572 ../i2prouter:1585 ../i2prouter:1597 ../i2prouter:1610 133 #: ../i2prouter:1628 ../i2prouter:1641 ../i2prouter:1655 ../i2prouter:1666 285 134 #, sh-format 286 msgid " 135 msgid "The $APP_LONG_NAME daemon is not currently installed." 287 136 msgstr "" 288 137 289 #: ../i2prouter:1468 ../i2prouter:1500 290 #, sh-format 291 msgid " Removing $APP_LONG_NAME daemon from upstart..." 292 msgstr "" 293 294 #: ../i2prouter:1496 295 #, sh-format 296 msgid " Removing $APP_LONG_NAME daemon from init.d..." 297 msgstr "" 298 299 #: ../i2prouter:1588 138 #: ../i2prouter:1670 300 139 #, sh-format 301 140 msgid "Remove not currently supported for $DIST_OS" 302 141 msgstr "" 303 142 304 #: ../i2prouter:1595 305 #, sh-format 306 msgid "Dumping $APP_LONG_NAME..." 307 msgstr "" 308 309 #: ../i2prouter:1605 310 #, sh-format 311 msgid "Failed to dump $APP_LONG_NAME." 312 msgstr "" 313 314 #: ../i2prouter:1608 315 #, sh-format 316 msgid "Dumped $APP_LONG_NAME." 317 msgstr "" 318 319 #: ../i2prouter:1618 320 #, sh-format 321 msgid "Starting $APP_LONG_NAME... Wrapper:Stopped" 322 msgstr "" 323 324 #: ../i2prouter:1622 325 #, sh-format 326 msgid "Starting $APP_LONG_NAME... Wrapper:Running" 327 msgstr "" 328 329 #: ../i2prouter:1625 330 #, sh-format 331 msgid "Starting $APP_LONG_NAME... Wrapper:$STATUS, Java:$JAVASTATUS" 332 msgstr "" 333 334 #: ../i2prouter:1635 335 #, sh-format 336 msgid "Stopping $APP_LONG_NAME... Wrapper:Stopped" 337 msgstr "" 338 339 #: ../i2prouter:1639 340 #, sh-format 341 msgid "Stopping $APP_LONG_NAME... Wrapper:Running" 342 msgstr "" 343 344 #: ../i2prouter:1642 345 #, sh-format 346 msgid "Stopping $APP_LONG_NAME... Wrapper:$STATUS, Java:$JAVASTATUS" 347 msgstr "" 348 349 #: ../i2prouter:1652 350 msgid "Unexpected command: $1" 351 msgstr "" 352 353 #: ../i2prouter:1656 354 msgid "Usage: " 355 msgstr "" 356 357 #: ../i2prouter:1683 143 #: ../i2prouter:1757 358 144 msgid "Commands:" 359 145 msgstr "" 360 146 361 #: ../i2prouter:1 684362 msgid " consoleLaunch in the current console."147 #: ../i2prouter:1758 148 msgid "Launch in the current console." 363 149 msgstr "" 364 150 365 #: ../i2prouter:1 685366 msgid " startStart in the background as a daemon process."151 #: ../i2prouter:1759 152 msgid "Start in the background as a daemon process." 367 153 msgstr "" 368 154 369 #: ../i2prouter:1 686370 msgid " stopStop if running as a daemon or in another console."155 #: ../i2prouter:1760 156 msgid "Stop if running as a daemon or in another console." 371 157 msgstr "" 372 158 373 #: ../i2prouter:1 687374 msgid " gracefulStop gracefully, may take up to 11 minutes."159 #: ../i2prouter:1761 160 msgid "Stop gracefully, may take up to 11 minutes." 375 161 msgstr "" 376 162 377 #: ../i2prouter:1 688378 msgid " restartStop if running and then start."163 #: ../i2prouter:1762 164 msgid "Stop if running and then start." 379 165 msgstr "" 380 166 381 #: ../i2prouter:1 689382 msgid " condrestartRestart only if already running."167 #: ../i2prouter:1763 168 msgid "Restart only if already running." 383 169 msgstr "" 384 170 385 #: ../i2prouter:1 691386 msgid " pause Pause if running."171 #: ../i2prouter:1764 172 msgid "Query the current status." 387 173 msgstr "" 388 174 389 #: ../i2prouter:1 692390 msgid " resume Resume if paused."175 #: ../i2prouter:1765 176 msgid "Install to start automatically when system boots." 391 177 msgstr "" 392 178 393 #: ../i2prouter:1 694394 msgid " status Query the current status."179 #: ../i2prouter:1766 180 msgid "Uninstall." 395 181 msgstr "" 396 182 397 #: ../i2prouter:1 695398 msgid " install Install to start automatically when system boots."183 #: ../i2prouter:1767 184 msgid "Request a Java thread dump if running." 399 185 msgstr "" 400 186 401 #: ../i2prouter:1 696402 msgid " remove Uninstall."187 #: ../i2prouter:1780 188 msgid "Please edit $0 and set the variable RUN_AS_USER" 403 189 msgstr "" 404 190 405 #: ../i2prouter:1 697406 msgid " dump Request a Java thread dump if running."191 #: ../i2prouter:1785 192 msgid "Running I2P as the root user is *not* recommended." 407 193 msgstr "" 408 194 409 #: ../i2prouter:1701 410 msgid "" 411 "JavaAppArgs: Zero or more arguments which will be passed to the Java " 412 "application." 195 #: ../i2prouter:1788 196 msgid "To run as root anyway, edit $0 and set ALLOW_ROOT=true." 413 197 msgstr ""
Note: See TracChangeset
for help on using the changeset viewer.