????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.163 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/gettext/projects/TP/ |
Upload File : |
#!/bin/sh # Print the team's address (to stdout) and output additional instructions # (to stderr). projectsdir="$1" progdir="$2" catalog="$3" # e.g. "pt_BR" language="$4" # e.g. "pt" url=`cat "$projectsdir/TP/teams.url"` sed_absolute_dotdot_urls="s,href=\"\\.\\./,href="`echo "$url" | sed -e 's,/[^/]*/[^/]*\$,/,'`",g" html=`"$progdir/urlget" "$url" "$projectsdir/TP/teams.html" | sed -e "$sed_absolute_dotdot_urls"` sed_addnl='s,</tr>,</tr>\ ,g' address=`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$catalog</td>[^<>]*<td>[^|]*</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q` if test -n "$address"; then case "$address" in mailto:*) address=`echo "$address" | sed -e 's,^mailto:,<,' -e 's,$,>,'` ;; esac (echo "Please visit your translation team's homepage at" echo " "`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$catalog</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q` echo " http://www.iro.umontreal.ca/contrib/po/HTML/teams.html" echo " http://www.iro.umontreal.ca/contrib/po/HTML/translators.html" echo " http://www.iro.umontreal.ca/contrib/po/HTML/index.html" echo "and consider joining your translation team's mailing list" echo " $address" ) 1>&2 echo "$address" exit 0 fi address=`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$language</td>[^<>]*<td>[^|]*</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q` if test -n "$address"; then case "$address" in mailto:*) address=`echo "$address" | sed -e 's,^mailto:,<,' -e 's,$,>,'` ;; esac (echo "A translation team exists for your language ($language) but not for" echo "your local dialect ($catalog). You can either join the existing" echo "translation team for $language or create a new translation team for $catalog." echo echo "Please visit the existing translation team's homepage at" echo " "`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$language</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q` echo " http://www.iro.umontreal.ca/contrib/po/HTML/teams.html" echo " http://www.iro.umontreal.ca/contrib/po/HTML/translators.html" echo " http://www.iro.umontreal.ca/contrib/po/HTML/index.html" echo "and consider joining the translation team's mailing list" echo " $address" echo echo "If you want to create a new translation team for $catalog, please visit" echo " http://www.iro.umontreal.ca/contrib/po/HTML/teams.html" echo " http://www.iro.umontreal.ca/contrib/po/HTML/leaders.html" echo " http://www.iro.umontreal.ca/contrib/po/HTML/index.html" ) 1>&2 echo "$address" exit 0 fi (echo "A translation team for your language ($language) does not exist yet." echo "If you want to create a new translation team for $language"`test "$catalog" = "$language" || echo " or $catalog"`", please visit" echo " http://www.iro.umontreal.ca/contrib/po/HTML/teams.html" echo " http://www.iro.umontreal.ca/contrib/po/HTML/leaders.html" echo " http://www.iro.umontreal.ca/contrib/po/HTML/index.html" ) 1>&2 exit 0