亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? intltool-extract.in

?? linux手機上的phonebook代碼
?? IN
字號:
#!@INTLTOOL_PERL@ -w # -*- Mode: perl; indent-tabs-mode: nil; c-basic-offset: 4  -*-##  The Intltool Message Extractor##  Copyright (C) 2000-2001, 2003 Free Software Foundation.##  Intltool is free software; you can redistribute it and/or#  modify it under the terms of the GNU General Public License as#  published by the Free Software Foundation; either version 2 of the#  License, or (at your option) any later version.##  Intltool is distributed in the hope that it will be useful,#  but WITHOUT ANY WARRANTY; without even the implied warranty of#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU#  General Public License for more details.##  You should have received a copy of the GNU General Public License#  along with this program; if not, write to the Free Software#  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.##  As a special exception to the GNU General Public License, if you#  distribute this file as part of a program that contains a#  configuration script generated by Autoconf, you may include it under#  the same distribution terms that you use for the rest of that program.##  Authors: Kenneth Christiansen <kenneth@gnu.org>#           Darin Adler <darin@bentspoon.com>### Release informationmy $PROGRAM      = "intltool-extract";my $PACKAGE      = "intltool";my $VERSION      = "0.31.2";## Loaded modulesuse strict; use File::Basename;use Getopt::Long;## Scalars used by the option stuffmy $TYPE_ARG	= "0";my $LOCAL_ARG	= "0";my $HELP_ARG 	= "0";my $VERSION_ARG = "0";my $UPDATE_ARG  = "0";my $QUIET_ARG   = "0";my $SRCDIR_ARG	= ".";my $FILE;my $OUTFILE;my $gettext_type = "";my $input;my %messages = ();my %loc = ();my %count = ();my %comments = ();my $strcount = 0;## Use this instead of \w for XML files to handle more possible characters.my $w = "[-A-Za-z0-9._:]";## Always print first$| = 1;## Handle optionsGetOptions (	    "type=s"     => \$TYPE_ARG,            "local|l"    => \$LOCAL_ARG,            "help|h"     => \$HELP_ARG,            "version|v"  => \$VERSION_ARG,            "update"     => \$UPDATE_ARG,	    "quiet|q"    => \$QUIET_ARG,	    "srcdir=s"	 => \$SRCDIR_ARG,            ) or &error;&split_on_argument;## Check for options. ## This section will check for the different options.sub split_on_argument {    if ($VERSION_ARG) {        &version;    } elsif ($HELP_ARG) {	&help;            } elsif ($LOCAL_ARG) {        &place_local;        &extract;    } elsif ($UPDATE_ARG) {	&place_normal;	&extract;    } elsif (@ARGV > 0) {	&place_normal;	&message;	&extract;    } else {	&help;    }  }    sub place_normal {    $FILE	 = $ARGV[0];    $OUTFILE     = "$FILE.h";}   sub place_local {    $OUTFILE     = fileparse($FILE, ());    if (!-e "tmp/") {         system("mkdir tmp/");     }    $OUTFILE     = "./tmp/$OUTFILE.h"}sub determine_type {   if ($TYPE_ARG =~ /^gettext\/(.*)/) {	$gettext_type=$1   }}## Sub for printing release informationsub version{    print <<_EOF_;${PROGRAM} (${PACKAGE}) $VERSIONCopyright (C) 2000, 2003 Free Software Foundation, Inc.Written by Kenneth Christiansen, 2000.This is free software; see the source for copying conditions.  There is NOwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE._EOF_    exit;}## Sub for printing usage informationsub help {    print <<_EOF_;Usage: ${PROGRAM} [OPTION]... [FILENAME]Generates a header file from an XML source file.It grabs all strings between <_translatable_node> and its end tag inXML files. Read manpage (man ${PROGRAM}) for more info.      --type=TYPE   Specify the file type of FILENAME. Currently supports:                    "gettext/glade", "gettext/ini", "gettext/keys"                    "gettext/rfc822deb", "gettext/schemas",                    "gettext/scheme", "gettext/xml"  -l, --local       Writes output into current working directory                    (conflicts with --update)      --update      Writes output into the same directory the source file                     reside (conflicts with --local)      --srcdir      Root of the source tree  -v, --version     Output version information and exit  -h, --help        Display this help and exit  -q, --quiet       Quiet modeReport bugs to http://bugzilla.gnome.org/ (product name "$PACKAGE")or send email to <xml-i18n-tools\@gnome.org>._EOF_    exit;}## Sub for printing error messagessub error{    print STDERR "Try `${PROGRAM} --help' for more information.\n";    exit;}sub message {    print "Generating C format header file for translation.\n" unless $QUIET_ARG;}sub extract {    &determine_type;    &convert;    open OUT, ">$OUTFILE";    &msg_write;    close OUT;    print "Wrote $OUTFILE\n" unless $QUIET_ARG;}sub convert {    ## Reading the file    {	local (*IN);	local $/; #slurp mode	open (IN, "<$SRCDIR_ARG/$FILE") || die "can't open $SRCDIR_ARG/$FILE: $!";	$input = <IN>;    }    &type_ini if $gettext_type eq "ini";    &type_keys if $gettext_type eq "keys";    &type_xml if $gettext_type eq "xml";    &type_glade if $gettext_type eq "glade";    &type_scheme if $gettext_type eq "scheme";    &type_schemas  if $gettext_type eq "schemas";    &type_rfc822deb  if $gettext_type eq "rfc822deb";}sub entity_decode_minimal{    local ($_) = @_;    s/&apos;/'/g; # '    s/&quot;/"/g; # "    s/&amp;/&/g;    return $_;}sub entity_decode{    local ($_) = @_;    s/&apos;/'/g; # '    s/&quot;/"/g; # "    s/&amp;/&/g;    s/&lt;/</g;    s/&gt;/>/g;    return $_;}sub escape_char{    return '\"' if $_ eq '"';    return '\n' if $_ eq "\n";    return '\\' if $_ eq '\\';    return $_;}sub escape{    my ($string) = @_;    return join "", map &escape_char, split //, $string;}sub type_ini {    ### For generic translatable desktop files ###    while ($input =~ /^_.*=(.*)$/mg) {        $messages{$1} = [];    }}sub type_keys {    ### For generic translatable mime/keys files ###    while ($input =~ /^\s*_\w+=(.*)$/mg) {        $messages{$1} = [];    }}sub type_xml {    ### For generic translatable XML files ###            while ($input =~ /(?:<!--([^>]*?)-->[^\n]*\n?[^\n]*)?\s_$w+\s*=\s*\"([^"]+)\"/sg) { # "        $messages{entity_decode_minimal($2)} = [];        $comments{entity_decode_minimal($2)} = $1 if (defined($1));    }    while ($input =~ /(?:<!--([^>]*?)-->\s*)?<_($w+)(?: xml:space="($w+)")?[^>]*>(.+?)<\/_\2>/sg) {        $_ = $4;        if (!defined($3) || $3 ne "preserve") {            s/\s+/ /g;            s/^ //;            s/ $//;        }        $messages{$_} = [];        $comments{$_} = $1 if (defined($1));    }}sub type_schemas {    ### For schemas XML files ###             # FIXME: We should handle escaped < (less than)    while ($input =~ /                      <locale\ name="C">\s*                          (<default>\s*(?:<!--([^>]*?)-->\s*)?(.*?)\s*<\/default>\s*)?                          (<short>\s*(?:<!--([^>]*?)-->\s*)?(.*?)\s*<\/short>\s*)?                          (<long>\s*(?:<!--([^>]*?)-->\s*)?(.*?)\s*<\/long>\s*)?                      <\/locale>                     /sgx) {        my @totranslate = ($3,$6,$9);        my @eachcomment = ($2,$5,$8);        foreach (@totranslate) {            my $currentcomment = shift @eachcomment;            next if !$_;            s/\s+/ /g;            $messages{entity_decode_minimal($_)} = [];            $comments{entity_decode_minimal($_)} = $currentcomment if (defined($currentcomment));        }    }}sub type_rfc822deb {    ### For rfc822-style Debian configuration files ###    my $lineno = 1;    my $type = '';    while ($input =~ /\G(.*?)(^|\n)(_+)([^:]+):[ \t]*(.*?)(?=\n\S|$)/sg)    {        my ($pre, $newline, $underscore, $tag, $text) = ($1, $2, $3, $4, $5);        while ($pre =~ m/\n/g)        {            $lineno ++;        }        $lineno += length($newline);        my @str_list = rfc822deb_split(length($underscore), $text);        for my $str (@str_list)        {            $strcount++;            $messages{$str} = [];            $loc{$str} = $lineno;            $count{$str} = $strcount;            my $usercomment = '';            while($pre =~ s/(^|\n)#([^\n]*)$//s)            {                $usercomment = "\n" . $2 . $usercomment;            }            $comments{$str} = $tag . $usercomment;        }        $lineno += ($text =~ s/\n//g);    }}sub rfc822deb_split {    # Debian defines a special way to deal with rfc822-style files:    # when a value contain newlines, it consists of    #   1.  a short form (first line)    #   2.  a long description, all lines begin with a space,    #       and paragraphs are separated by a single dot on a line    # This routine returns an array of all paragraphs, and reformat    # them.    # When first argument is 2, the string is a comma separated list of    # values.    my $type = shift;    my $text = shift;    $text =~ s/^[ \t]//mg;    return (split(/, */, $text, 0)) if $type ne 1;    return ($text) if $text !~ /\n/;    $text =~ s/([^\n]*)\n//;    my @list = ($1);    my $str = '';    for my $line (split (/\n/, $text))    {        chomp $line;        if ($line =~ /^\.\s*$/)        {            #  New paragraph            $str =~ s/\s*$//;            push(@list, $str);            $str = '';        }        elsif ($line =~ /^\s/)        {            #  Line which must not be reformatted            $str .= "\n" if length ($str) && $str !~ /\n$/;            $line =~ s/\s+$//;            $str .= $line."\n";        }        else        {            #  Continuation line, remove newline            $str .= " " if length ($str) && $str !~ /\n$/;            $str .= $line;        }    }    $str =~ s/\s*$//;    push(@list, $str) if length ($str);    return @list;}sub type_glade {    ### For translatable Glade XML files ###    my $tags = "label|title|text|format|copyright|comments|preview_text|tooltip|message";    while ($input =~ /<($tags)>([^<]+)<\/($tags)>/sg) {	# Glade sometimes uses tags that normally mark translatable things for        # little bits of non-translatable content. We work around this by not        # translating strings that only includes something like label4 or window1.	$messages{entity_decode($2)} = [] unless $2 =~ /^(window|label)[0-9]+$/;    }        while ($input =~ /<items>(..[^<]*)<\/items>/sg) {	for my $item (split (/\n/, $1)) {	    $messages{entity_decode($item)} = [];	}    }    ## handle new glade files    while ($input =~ /<(property|atkproperty)\s+[^>]*translatable\s*=\s*"yes"[^>]*>([^<]+)<\/\1>/sg) {	$messages{entity_decode($2)} = [] unless $2 =~ /^(window|label)[0-9]+$/;    }    while ($input =~ /<atkaction\s+action_name="([^>]*)"\s+description="([^>]+)"\/>/sg) {        $messages{entity_decode_minimal($2)} = [];    }}sub type_scheme {    while ($input =~ /_\w*\(?"((?:[^"\\]+|\\.)*)"\)?/sg) {	$messages{$1} = [];    }}sub msg_write {    my @msgids;    if (%count)    {        @msgids = sort { $count{$a} <=> $count{$b} } keys %count;    }    else    {        @msgids = sort keys %messages;    }    for my $message (@msgids)    {	my $offsetlines = 1;	$offsetlines++ if $message =~ /%/;	if (defined ($comments{$message}))	{		while ($comments{$message} =~ m/\n/g)		{		    $offsetlines++;		}	}	print OUT "# ".($loc{$message} - $offsetlines).  " \"$FILE\"\n"	        if defined $loc{$message};   	print OUT "/* ".$comments{$message}." */\n"                if defined $comments{$message};   	print OUT "/* xgettext:no-c-format */\n" if $message =~ /%/;            	my @lines = split (/\n/, $message, -1);    	for (my $n = 0; $n < @lines; $n++)	{            if ($n == 0)            { 		print OUT "char *s = N_(\"";             }            else            {                  print OUT "             \"";             }            print OUT escape($lines[$n]);            if ($n < @lines - 1)            {                print OUT "\\n\"\n";             }            else            {                print OUT "\");\n";  	    }        }    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美一区二区精品性色| 欧美日韩成人综合天天影院 | 欧洲日韩一区二区三区| 国产欧美一二三区| 国产精品中文字幕欧美| 久久婷婷综合激情| 国产一区二区主播在线| 久久综合九色综合欧美亚洲| 日本中文一区二区三区| 欧美日韩高清一区| 日韩av不卡一区二区| 91麻豆精品国产| 免费观看成人鲁鲁鲁鲁鲁视频| 91精品国产综合久久久蜜臀图片| 日韩av中文在线观看| 精品嫩草影院久久| 丁香六月久久综合狠狠色| 日本一区二区视频在线观看| 东方aⅴ免费观看久久av| 国产精品激情偷乱一区二区∴| 9i在线看片成人免费| 亚洲最新视频在线观看| 欧美视频一区二| 男人的天堂久久精品| 精品sm在线观看| 99久久精品国产观看| 亚洲婷婷在线视频| 成人av免费观看| 中文字幕一区二区三区精华液| 狠狠色丁香久久婷婷综| 国产午夜精品理论片a级大结局| 国产一区二区三区精品欧美日韩一区二区三区| 国产亚洲1区2区3区| 91啪亚洲精品| 日本成人在线视频网站| 欧美国产97人人爽人人喊| 在线观看免费亚洲| 亚洲综合在线第一页| 欧美一区二区三区在| 美日韩一区二区| 久久久不卡影院| 91精品办公室少妇高潮对白| 亚洲bt欧美bt精品| 精品国产凹凸成av人导航| 国产美女在线精品| 亚洲一区二区在线视频| 欧美www视频| 在线一区二区三区四区五区| 久88久久88久久久| 亚洲一区视频在线| 欧美国产精品中文字幕| 欧美图区在线视频| 成人av电影在线观看| 青椒成人免费视频| 亚洲综合免费观看高清完整版在线 | 日本aⅴ免费视频一区二区三区| 国产日韩精品一区二区三区| 欧美日韩一区二区在线观看| 国产酒店精品激情| 婷婷综合另类小说色区| 国产精品久久久一区麻豆最新章节| 欧美日韩国产综合视频在线观看| 国产精品亚洲人在线观看| 午夜国产精品一区| 亚洲黄色在线视频| 日本一区免费视频| 亚洲精品一区二区精华| 欧美日韩国产大片| 色综合av在线| 成人免费精品视频| 国产一区二区三区精品欧美日韩一区二区三区 | 欧美日韩精品一区二区天天拍小说 | 一个色妞综合视频在线观看| 久久久精品综合| 日韩视频免费观看高清完整版| 91啦中文在线观看| 99久精品国产| 国产成人免费在线观看不卡| 欧美a一区二区| 日韩电影在线一区二区| 亚洲综合色视频| 一个色在线综合| 亚洲一区二区三区美女| 综合婷婷亚洲小说| 一区免费观看视频| 亚洲色图在线看| 99九九99九九九视频精品| 麻豆国产欧美日韩综合精品二区| 奇米一区二区三区av| 亚洲va欧美va人人爽| 亚洲一区二区影院| 天使萌一区二区三区免费观看| 亚洲最新视频在线观看| 亚洲一区在线观看网站| 亚洲成人综合在线| 亚洲成av人片一区二区三区| 性欧美疯狂xxxxbbbb| 亚洲一区二区三区在线看| 一区二区三区四区蜜桃 | 成人免费视频国产在线观看| 国产麻豆一精品一av一免费| 韩国视频一区二区| 国产高清不卡一区二区| 国产精品一区在线观看乱码| 高清视频一区二区| av中文字幕亚洲| 成人激情午夜影院| 91久久精品一区二区| 欧美日韩国产中文| 欧美丝袜自拍制服另类| 91在线一区二区| 欧美日韩国产区一| 欧美成人a在线| 亚洲国产电影在线观看| 亚洲精品老司机| 蜜臀精品久久久久久蜜臀| 国产一本一道久久香蕉| 99riav久久精品riav| 欧美日产在线观看| 精品国产精品网麻豆系列| 2024国产精品| 亚洲欧美综合另类在线卡通| 亚洲午夜国产一区99re久久| 九九热在线视频观看这里只有精品 | 欧美日韩国产精选| 欧美日韩国产一级| 欧美电影免费观看高清完整版在线| 日韩精品一区二区三区三区免费| 久久久亚洲高清| 亚洲黄色小说网站| 国产中文一区二区三区| 国产传媒久久文化传媒| 国产成人午夜片在线观看高清观看 | 日韩欧美资源站| 亚洲欧美中日韩| 日产国产高清一区二区三区| 国产成人免费网站| 欧美日韩国产高清一区二区 | 一区二区三区四区五区视频在线观看 | 日韩精品一区二区三区视频 | 美女脱光内衣内裤视频久久影院| 成人少妇影院yyyy| 欧美一二三四在线| 亚洲男同性视频| 国产馆精品极品| 欧美一区二区视频在线观看2022 | 欧美成人性福生活免费看| 国产精品家庭影院| 国产乱理伦片在线观看夜一区| 在线观看一区二区视频| 欧美精品一区二区三区蜜桃| 亚洲综合激情网| fc2成人免费人成在线观看播放| 日韩欧美国产午夜精品| 亚洲无人区一区| va亚洲va日韩不卡在线观看| 日韩欧美国产1| 亚洲成av人影院在线观看网| 成人av在线播放网址| 久久影音资源网| 秋霞av亚洲一区二区三| 欧美最新大片在线看 | 亚洲视频资源在线| 狠狠色丁香久久婷婷综合_中| 欧美日韩在线精品一区二区三区激情| 国产日韩精品一区| 国产精品白丝jk黑袜喷水| 欧美一区二区高清| 亚洲综合激情另类小说区| 在线观看日韩精品| 一区二区三国产精华液| 91福利国产精品| 有坂深雪av一区二区精品| 99精品国产视频| 亚洲男人的天堂在线aⅴ视频| 粉嫩aⅴ一区二区三区四区五区| 欧美视频一区二| 美女视频一区二区| 日韩视频一区二区三区在线播放| 久久精品国产**网站演员| 日韩欧美一区在线观看| 久久精品国产亚洲a| 久久久久99精品一区| 国产高清精品网站| 久久一区二区三区国产精品| 久久99精品久久久久久国产越南| 91麻豆精品国产| 国产高清亚洲一区| 国产精品精品国产色婷婷| 国产精品中文字幕日韩精品| 日韩精品一区二区三区视频播放| 韩国精品一区二区| 国产欧美一区二区在线| 99re成人精品视频| 亚洲精品成人天堂一二三| 欧美亚男人的天堂| 日韩不卡免费视频| 蜜桃久久av一区| 精品蜜桃在线看| 成人美女视频在线观看|