Changeset 14657


Ignore:
Timestamp:
2007-10-11T10:45:56+13:00 (17 years ago)
Author:
anna
Message:

Updated Perl Module in Marathi. Many thanks to Shubhada Nagarkar.

Location:
gsdl/trunk/perllib
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/basebuilder.pm

    r14384 r14657  
    9494    } elsif ($gs_mode eq "gs3") {
    9595    $self->{'collect_cfg'} = &colcfg::read_collection_cfg_xml ($colcfgname);
    96 
    97     #this $self->{'collect_cfg_preserve'} is used for gs3 only and to be passed to &colcfg::write_build_cfg_xml in sub make_auxilary_files later in this basebuilder.pm, we use this preserve object because $self->{'collect_cfg'}->{'classify'} somewhat gets modified during the calling of &classify::load_classifiers.
    98     $self->{'collect_cfg_preserve'} = &colcfg::read_collection_cfg_xml ($colcfgname);
    9996    }
    10097   
     
    124121    $classifiers = $self->{'collect_cfg'}->{'classify'};
    125122    }
    126 
     123   
    127124    # load all the classifiers
    128125    $self->{'classifiers'} = &classify::load_classifiers ($classifiers, $build_dir, $outhandle);
     
    443440    }
    444441    }
    445     $build_cfg->{'indexmap'} = \@indexmap if scalar (@indexmap);
     442    $build_cfg->{'indexmap'} = \@indexmap;
    446443
    447444    my @subcollectionmap = ();
     
    473470    }
    474471    if ($gs_mode eq "gs3") {
    475 
    476       &colcfg::write_build_cfg_xml("$self->{'build_dir'}/buildConfig.xml", $build_cfg, $self->{'collect_cfg_preserve'}, $self->{'disable_OAI'});
     472      &colcfg::write_build_cfg_xml("$self->{'build_dir'}/buildConfig.xml", $build_cfg, $self->{'collect_cfg'}, $self->{'disable_OAI'});
    477473    }   
    478474
  • gsdl/trunk/perllib/cfgread4gs3.pm

    r14558 r14657  
    7878           "index" => "indexes",
    7979           "plugin" => "plugin",
    80                "plugout" => "plugout",
    8180           "indexOption" => "indexoptions",
    8281           "searchType" => "searchtype",
     
    10099my $arrayexp = q/^(index|level|indexSubcollection|indexLanguage)$/;
    101100my $arrayarrayexp= q/^(plugin|classifier)$/;
     101
    102102my $defaults = q/^(defaultIndex|defaultLevel|defaultIndexLanguage|languageMetadata)$/;
    103103
     
    147147    $data->{$key} = [];
    148148      }
     149
    149150      push (@{$data->{$key}},$name);
    150151    }
     
    161162      push (@{$data->{$key}},$name);
    162163    }
    163     #@ plugout options
    164     elsif ($element eq "plugout") {
    165     $currentLevel = "plugout";
    166     my $key = $nameMap->{$currentLevel};   
    167     if (!defined $data->{$key}) {
    168         $data->{$key} = [];
    169     }
    170     if(defined $name and $name ne ""){
    171         push (@{$data->{$key}},$name);
    172     }
    173     else{
    174        push (@{$data->{$key}},"GAPlugout");
    175     }
    176     }
    177     if ($currentLevel eq "plugout" and $element eq "option") {     
    178     my $key = $nameMap->{$currentLevel};
    179     if (defined $name and $name ne ""){
    180         push (@{$data->{$key}},$name);
    181     }
    182     if (defined $value and $value ne  ""){
    183         push (@{$data->{$key}},$value);
    184     }
    185     }
     164
    186165    #@ use hash of hash of strings: hashexp
    187166    elsif ($element eq "subcollection") {
  • gsdl/trunk/perllib/mgppbuilder.pm

    r14374 r14657  
    789789    my @indexfieldmap = ();
    790790    my @indexfields = ();
    791     my @indexmap = ();
    792 
     791   
    793792    if (scalar(keys %{$self->{'buildproc'}->{'indexfieldmap'}}) == 0) {
    794793    # set the default mapping
     
    823822    }       
    824823
    825     if (defined $buildcfg->{'indexmap'}) {
    826     foreach $field (@{$buildcfg->{'indexmap'}}) {
    827         push (@indexmap, "$field");
    828     }
    829     }       
    830 
    831824    $self->{'build_cfg'}->{'indexfieldmap'} = \@indexfieldmap;
    832825    $self->{'build_cfg'}->{'indexfields'} = \@indexfields;
    833     $self->{'build_cfg'}->{'indexmap'} = \@indexmap;
    834826}
    835827
  • gsdl/trunk/perllib/plugins/HTMLPlug.pm

    r14554 r14657  
    172172    }
    173173
    174    if ($self->{'input_encoding'} eq "iso_8859_1") {
     174    if ($self->{'input_encoding'} eq "iso_8859_1") {
    175175    # convert to utf-8
    176176    $$text=&unicode::unicode2utf8(&unicode::convert2unicode("iso_8859_1", $text));
     
    178178    # convert any alphanumeric character entities to their utf-8
    179179    # equivalent for indexing purposes
    180     #&ghtml::convertcharentities ($$text);
     180    &ghtml::convertcharentities ($$text);
    181181
    182182    $$text =~ s/\s+/ /g; # remove \n's
     
    213213    # fix up the image links
    214214    $section =~ s/<img[^>]*?src=\"?([^\">]+)\"?[^>]*>/
    215     <center><img src=\"$1\" \/><\/center><br\/>/ig;
     215    <center><img src=\"$1\"><\/center><br>/ig;
    216216    $section =~ s/&lt;&lt;I&gt;&gt;\s*([^\.]+\.(png|jpg|gif))/
    217     <center><img src=\"$1\" \/><\/center><br\/>/ig;
     217    <center><img src=\"$1\"><\/center><br>/ig;
    218218
    219219    return $section;
     
    390390        if ($self->{'old_style_HDL'})
    391391        {
    392         $hdl_output_filename = &util::filename_cat($tmp_dirname, "$tailname$suffix");
     392        $hdl_output_filename = &util::filename_cat($tmp_dirname, "newHDL_$tailname$suffix");
    393393        $hdl_output_filename = $self->convert_to_newHDLformat($input_filename,$hdl_output_filename);
    394394        }
     
    947947
    948948    my $anchor_name = $img_file;
    949     #$anchor_name =~ s/^.*\///;
    950     #$anchor_name = "<a name=\"$anchor_name\" ></a>";
    951 
    952     my $image_link = $front . $img_file .$back;
    953     my $anchor_link = "<a href=\"$img_file\" >".$image_link."</a>"; 
    954 
    955     return $anchor_link;   
    956     #return $front . $img_file . $back . $anchor_name;
     949    $anchor_name =~ s/^.*\///;
     950    $anchor_name = "<a name=\"$anchor_name\" />";
     951
     952    return $front . $img_file . $back . $anchor_name;
    957953}
    958954
  • gsdl/trunk/perllib/plugins/ImagePlug.pm

    r14117 r14657  
    3737my $arguments =
    3838    [ { 'name' => "process_exp",
     39    'disp' => "process_expression",
    3940    'desc' => "{BasPlug.process_exp}",
    4041    'type' => "regexp",
  • gsdl/trunk/perllib/plugins/MP3Plug.pm

    r14117 r14657  
    4343my $arguments =
    4444    [ { 'name' => "process_exp",
     45    'disp' => "process_expression",
    4546    'desc' => "{BasPlug.process_exp}",
    46     'type' => "string",
     47    'type' => "regexp",
    4748    'deft' => &get_default_process_exp(),
    4849    'reqd' => "no" },
    4950      { 'name' => "assoc_images",
     51    'disp' => "associated_images",
    5052        'desc' => "{MP3Plug.assoc_images}",
    5153        'type' => "flag",
  • gsdl/trunk/perllib/plugins/MediaWikiPlug.pm

    r14496 r14657  
    6363       'type' => "regexp",
    6464       'reqd' => "no",
    65        'deft' => "<table([^>]*)id=(\\\"|')toc(\\\"|')(.|\\n)*?</table>\\n" },       
     65       'deft' => "<table([^>]*)id=(\\\"|')toc(\\\"|')(.|\\n)*</table>\\n" },       
    6666     # set to delete the navigation section
    6767     { 'name' => "delete_nav",
     
    127127    my @head_and_body = split(/<body/i,$$textref);
    128128    my $head = shift(@head_and_body);
    129     my $body_text = join("<body", @head_and_body);     
     129    my $body_text = join("<body", @head_and_body); 
    130130   
    131131    $head =~ m/<title>(.+)<\/title>/i;
     
    159159    # remove header section, it may contain header images or additional search boxes
    160160    my $header_exp = "<div([^>]*)id=(\"|')container(\"|')([^>]*)>(.|\\n)*<div([^>]*)id=(\"|')column-content";
    161     if($body_text =~ /$header_exp/){
    162         $body_text =~ s/$header_exp/<div$1id='container'$4><div$6id='column-content/isg;
    163     } else {               
    164         $header_exp = "(.|\\n)*?<div([^>]*)?id=(\"|')column-content";
    165                 if($body_text =~ /$header_exp/){
    166                   $body_text =~ s/$header_exp/<div$2id='column-content/i;               
    167                 }
    168     }
     161    $body_text =~ s/$header_exp/<div$1id='container'$4><div$6id='column-content/isg;
    169162   
    170163    # remove timeline
     
    277270                    # comment out the body element because we change the body to div
    278271                    $line =~ s/^(\s*)body(\s*){(\s*)$/$1\/*body$2*\/{$3/isg;
    279                    
    280                     if($line =~ m/^(.+)\{/i || $line =~ m/^(\s)*#/i){                   
    281                       if($line !~ m/wikispecificstyle/i){
    282                         $line = "#wikispecificstyle " . $line;
    283                       }
    284                     }
    285                    
     272                                       
     273            if($line =~ m/^(.+)\{/i || $line =~ m/^(\s)*#/i){                   
     274            $line = "#wikispecificstyle " . $line;
     275            }
    286276            $css_content .= $line;
    287277        }
     
    385375    } else {
    386376        $preserve_sections .= "\n$searchbox_section\n";
    387     }
     377    }   
     378   
    388379   
    389380    if($preserve_sections ne ""){
    390381      $preserve_sections = "<div id=\"column-one\">\n" . $preserve_sections . "\n</div>\n";
    391382    }
    392     $preserve_sections = "</div></div></div>\n" . $preserve_sections . "\n</body>";   
    393            
     383    $preserve_sections = "</div></div></div>\n" . $preserve_sections . "\n</body>";    
     384   
    394385    $body_text =~ s/$print_footer/$preserve_sections/isg;
    395386   
     
    398389    my @forms;
    399390    my $form_count = 0;
    400     while($body_text =~ m/<form([^>]*)name=("|')([^>"']*)?("|')/isg){
    401         next if($3 eq "searchform");
    402         $forms[$form_count++] = $&;       
     391    while($body_text =~ m/<form([^>]*)name=("|')([^>]*)("|')/isg){
     392        next if($3 eq "q");
     393        $forms[$form_count++] = $&;
    403394    }
    404395    foreach my $form (@forms) {     
    405396      $body_text =~ s/$form[\s\S]*?<\/form>//m;
    406     }
     397    }   
     398   
    407399   
    408400    # process links.
     
    567559    # If delete_toc is set, remove toc and tof contents.   
    568560    if (defined $self->{'delete_toc'} && ($self->{'delete_toc'} == 1)){
    569     if (defined $self->{'toc_exp'} && $self->{'toc_exp'} =~ /\S/){     
    570           # print "\nit matches toc_exp !!\n" if $body_text =~ /$self->{'toc_exp'}/;
     561    if (defined $self->{'toc_exp'} && $self->{'toc_exp'} =~ /\S/){
     562          # print "\nit matches toc_exp!!\n" if $body_text =~ /$self->{'toc_exp'}/;
    571563          if ($body_text =~ /$self->{'toc_exp'}/) {
    572         $body_text =~ s/$self->{'toc_exp'}//i;     
     564        $body_text =~ s/$self->{'toc_exp'}//i;
    573565          }
    574566    }
  • gsdl/trunk/perllib/plugout.pm

    r14557 r14657  
    4141         };
    4242
    43 #globaloptions contains any options that should be passed to all plugouts
     43#globaloptions contains any options that should be passed to all plugins
    4444my ($verbosity, $outhandle, $failhandle, $globaloptions);
    4545
    4646sub load_plugout{
    47     my ($plugout) = shift @_;
     47    my ($plugoutname,$plugout_options) = @_;
    4848
    4949    my $colplugdir = &util::filename_cat($ENV{'GSDLCOLLECTDIR'},"perllib/plugouts");
    50     unshift (@INC, $colplugdir);
    51    
    52     my $plugoutname = shift @$plugout;
    53        
     50     unshift (@INC, $colplugdir);
     51
    5452    # find the plugout
    55     my $customplugname = &util::filename_cat($ENV{'GSDLCOLLECTDIR'}, "custom", $ENV{'GSDLCOLLECTION'},
    56                          'perllib', 'plugouts', "${plugoutname}.pm");
    57     my $colplugname = &util::filename_cat($ENV{'GSDLCOLLECTDIR'}, 'perllib', 'plugouts',
     53    my $colplugname = &util::filename_cat($ENV{'GSDLCOLLECTDIR'},"perllib/plugouts",
    5854                      "${plugoutname}.pm");
    59     my $mainplugname = &util::filename_cat($ENV{'GSDLHOME'}, 'perllib', 'plugouts',
    60                       "${plugoutname}.pm");
    61     if (-e $customplugname) { require $customplugname; }
    62     elsif (-e $colplugname) { require $colplugname; }
     55    my $mainplugname = &util::filename_cat($ENV{'GSDLHOME'},"perllib/plugouts",
     56                       "${plugoutname}.pm");
     57    if (-e $colplugname) { require $colplugname; }
    6358    elsif (-e $mainplugname) { require $mainplugname; }
    6459    else {
    65     gsprintf($outhandle, "{plugout.could_not_find_plugout}\n",
     60    &gsprintf(STDERR, "{plugout.could_not_find_plugout}\n",
    6661         $plugoutname);
    67         die "\n";
     62    die "\n";
    6863    }
    6964
     
    7166    my ($plugobj);
    7267
    73     eval ("\$plugobj = new \$plugoutname([],\$plugout)");
     68    eval ("\$plugobj = new \$plugoutname([],\$plugout_options)");
    7469    die "$@" if $@;
    7570
  • gsdl/trunk/perllib/strings_ar.properties

    r13299 r14657  
    6868#
    6969
    70 # -- Missing translation: scripts.language
     70scripts.language:لغة عرض وصف الخيارات في (Ù
     71ثال، 'en_us'يحدد الإÙ
     72لاء الأÙ
     73ريكي ). يتطلؚ ترجÙ
     74Ø© وصف الخيارات الÙ
     75توفرة في Ù
     76لف
    7177
    7278# -- Missing translation: scripts.xml
    7379
    74 # -- Missing translation: scripts.listall
    75 # -- Missing translation: scripts.describeall
     80scripts.listall:عرض الخيارات لكل العناصر الÙ
     81عروفة حول  # Updated 7-Oct-2007 by kkhalafala
     82scripts.describeall:ÎíÇÑÇÊ ÇáÚÑÖ áßá ÇáãæÇÏ ÇáãÚÑæÝÉ.  # Updated 10-Oct-2007 by usamasa
    7683
    7784scripts.both_old_options:تحذير: لÙ
     
    115122لف التكوين للتحديث %s
    116123
    117 # -- Missing translation: buildcol.collectdir
    118 
    119 # -- Missing translation: buildcol.copying_back_cached_build
    120 
    121 # -- Missing translation: buildcol.create_images
     124buildcol.collectdir:Ù
     125سار دليل "الÙ
     126جÙ
     127وعة".  # Updated 2-Oct-2007 by usamasa
     128
     129buildcol.copying_back_cached_build:ÅÚÇÏÉ ÇáØÈÇÚÉ áÜ cached build  # Updated 10-Oct-2007 by usamasa
     130
     131buildcol.create_images:ÍÇæá Ãä ÊäÔíÁ ÕæÑ ÊáÞÇÆíÉ ááãÌãæÚÉ. æåÐÇ íÚÊãÏ Úáì ÈÑäÇãÌ Gimp ÇáãËÈÊ Úáì ÈÑäÇãÌ Perl ßí íÓãÍ ÈÇáßÊÇÈÉ áå.  # Updated 26-Sep-2007 by usamasa
    122132
    123133buildcol.debug:طؚاعة الÙ
    124134خرجات إلي STDOUT.
    125135
    126 # -- Missing translation: buildcol.desc
    127 
    128 # -- Missing translation: buildcol.faillog
     136buildcol.desc:نص Perl الذي يستخدÙ
     137 Ù„ؚناء Ù
     138جÙ
     139وعة قرينستون Ù
     140ن وثا؊ق أر؎يف قرينستون.  # Updated 11-Oct-2007 by kkhalafala
     141
     142buildcol.faillog:Ù
     143دونة Ù
     144لفات الإجراءات الفا؎لة، تتضÙ
     145ن هذه الÙ
     146دونة اسÙ
     147اء Ù
     148لفات الإجراءات التي ف؎لت  # Updated 7-Oct-2007 by kkhalafala
    129149
    130150# -- Missing translation: buildcol.index
    131151
    132 # -- Missing translation: buildcol.incremental
    133 
    134 # -- Missing translation: buildcol.incremental_dlc
     152buildcol.incremental:تك؎يف الوثا؊ق التي لÙ
     153 ÙŠØªÙ
     154 ØªÙƒØŽÙŠÙÙ‡Ø§ Ù
     155ن Ù‚ØšÙ„.تطؚيق -keepold. تعتÙ
     156د علي Ù
     157ك؎ف lucene .  # Updated 11-Oct-2007 by kkhalafala
     158
     159buildcol.incremental_dlc:تحديث الإضافة الحقيقية لقاعدة ؚيانات GDBM . تعÙ
     160ل فقط Ù
     161ع الÙ
     162صنفات الهرÙ
     163ية.  # Updated 11-Oct-2007 by kkhalafala
    135164
    136165# -- Missing translation: buildcol.keepold
    137166
    138167buildcol.maxdocs:العدد الأقصي للوثا؊ق للؚناء.
    139 # -- Missing translation: buildcol.maxnumeric
     168buildcol.maxnumeric:ÃÞÕì ÚÏÏ ÍÑæÝ áßáãÉ íãßä Ãä íßæä Ýí ÞÇãæÓ ÇáßÔÇÝ. ÇáÃÑÞÇã ÇáßÈíÑÉ ÊäÞÓã Åáì ÚÏÉ ßáãÇÊ ááÊßÔíÝ. Úáì ÓÈíá ÇáãËÇá: áæ ßÇä ÃÞÕì ÚÏÏ ÍÑæÝ åæ 4 ÝÅä "1342663" ÓæÝ ÊäÞÓã Åáì "1342" æ "663".  # Updated 21-Sep-2007 by usamasa
    140169buildcol.mode:اجزاء عÙ
    141170لية الؚناء للÙ
     
    151180# -- Missing translation: buildcol.no_image_script
    152181
    153 # -- Missing translation: buildcol.no_strip_html
    154 
    155 # -- Missing translation: buildcol.no_text
    156 
    157 # -- Missing translation: buildcol.sections_index_document_metadata
     182buildcol.no_strip_html:áÇ ÊÞæã ÈÅÒÇáÉ ÚáÇãÇÊ HTML ãä ÇáäÕ ÇáãßÔÝ (ÊÓÊÎÏã ÝÞØ ãÚ ãÌãæÚÇÊ mgpp).  # Updated 2-Oct-2007 by usamasa
     183
     184buildcol.no_text:لا تضغط النص.هذا الخيار Ù
     185فيد تقليل حجÙ
     186 Ø§Ù„ك؎افات الÙ
     187ؚنية إذا كنت تنوي دا؊Ù
     188ا عرض عرض الوثا؊ق في زÙ
     189ن الت؎غيل الفعلي (Ù
     190ثال.لن تستطيع
     191
     192buildcol.sections_index_document_metadata:تك؎يف وثيقة Ù
     193ستوي الواصفات علي Ù
     194ستوي الأقساÙ
     195  # Updated 7-Oct-2007 by kkhalafala
    158196buildcol.sections_index_document_metadata.never:لا تك؎ف اي واصفات ؚيانات للوثيقة عند Ù
    159197ستوي القسÙ
     
    161199buildcol.sections_index_document_metadata.always:اضف كل الÙ
    162200خصص
    163 # -- Missing translation: buildcol.sections_index_document_metadata.unless_section_metadata_exists
    164 
    165 # -- Missing translation: buildcol.out
     201buildcol.sections_index_document_metadata.unless_section_metadata_exists:ÃÖÝ ãíÊÇÏÇÊÇ ÇáãÓÊæì ÝÞØ ÅÐÇ áã íßä åäÇß ãíÊÇÏÇÊÇ ÞÓã ãÐßÑæÉ áåÐÇ ÇáÇÓã.  # Updated 26-Sep-2007 by usamasa
     202
     203buildcol.out:إسÙ
     204 Ù
     205لف أو أي Ù
     206عالجة لطؚاعة حالة الÙ
     207خرجات .  # Updated 11-Oct-2007 by kkhalafala
    166208
    167209buildcol.params:[خيارات] إسÙ
     
    170212وعة
    171213
    172 # -- Missing translation: buildcol.remove_empty_classifications
     214buildcol.remove_empty_classifications:قÙ
     215 ØšØ¥Ø®ÙØ§Ø¡ عناصر التصنيف الفارغة (تلك التي لا تحتوي على وثا؊ق).  # Updated 2-Oct-2007 by usamasa
    173216
    174217buildcol.removeold:سوف يتÙ
     
    219262صنف.
    220263
    221 # -- Missing translation: classinfo.option_types
     264classinfo.option_types:الخيارات الÙ
     265حددة Ù
     266عرفة فقط ضÙ
     267ن الÙ
     268صنف، و هي Ù
     269توفرة دا؊Ù
     270ا لهذا الÙ
     271صنف.  # Updated 11-Oct-2007 by kkhalafala
    222272
    223273classinfo.params:[خيارات] إسÙ
     
    225275صنف
    226276
    227 # -- Missing translation: classinfo.passing_options
    228 
    229 # -- Missing translation: classinfo.specific_options
     277classinfo.passing_options:يÙ
     278كن تÙ
     279رير الخيارات لآي  plugout ؚتضÙ
     280ينها في Ù
     281لف الإعداد collect.cfg  # Updated 11-Oct-2007 by kkhalafala
     282
     283classinfo.specific_options:الخيارات الÙ
     284حددة Ù
     285عرفة فقط ضÙ
     286ن الÙ
     287صنف، و هي Ù
     288توفرة دا؊Ù
     289ا لهذا الÙ
     290صنف  # Updated 7-Oct-2007 by kkhalafala
    230291
    231292# -- downloadfrom.pl --
     
    243304نه
    244305downloadfrom.download_mode.Web:ؚروتوكول نقل النص الت؎عؚي
     306downloadfrom.download_mode.MediaWiki:ãæÞÚ MediaWiki  # Updated 1-Oct-2007 by usamasa
    245307downloadfrom.download_mode.OAI:Ù
    246308ؚادرة الأر؎ؚف الÙ
     
    268330وذج التحÙ
    269331يل
    270 # -- Missing translation: downloadinfo.collection
     332downloadinfo.collection:ÅÚØÇÁ ÇáãÌãæÚÉ ÇÓã ÓíäÔíÁ ãáÝ download.pl ÝÇäÙÑ ÃæáÇ Ýí ðcollect/collection-name/perllib/downloaders . áæ ßÇä ÇáÈÑäÇãÌ ÛíÑ ãæÌæÏ åäÇß ÓæÝ íÈÍË Ýí Ïáíá perllib/downloaders ÇáÚÇã.  # Updated 1-Oct-2007 by usamasa
    271333downloadinfo.params:[خيارات] [نÙ
    272334وذج-التنزيل]
     
    278340 Ù„Ù„Ù
    279341صنف
    280 # -- Missing translation: downloadinfo.specific_options
    281 # -- Missing translation: downloadinfo.option_types
     342downloadinfo.specific_options:الخيارات الÙ
     343حددة Ù
     344عرفة ضÙ
     345ن وحدة التنزيل، وهي Ù
     346توفرة دا؊Ù
     347ا لهذا الÙ
     348نزل.  # Updated 11-Oct-2007 by kkhalafala
     349downloadinfo.option_types:وحدات التنزيل يÙ
     350كن أن تأخذ نوعين Ù
     351ن الخيارات  # Updated 11-Oct-2007 by kkhalafala
    282352
    283353# -- explode_metadata_database.pl --
    284354explode.desc:تجز؊ة قاعدة ؚيانات واصفات ؚيانات
    285355
    286 # -- Missing translation: explode.document_field
     356explode.document_field:عنصر واصفات الؚيانات الذي يحدد إسÙ
     357 Ù
     358لف الوثا؊ق لتضÙ
     359ينه في الÙ
     360جÙ
     361وعة  # Updated 11-Oct-2007 by kkhalafala
    287362
    288363# -- Missing translation: explode.document_prefix
    289364
    290 # -- Missing translation: explode.document_suffix
     365explode.document_suffix:لاحقة لÙ
     366واقع الوثيقة ( للإستخداÙ
     367 Ù
     368ع  document_field option).  # Updated 7-Oct-2007 by kkhalafala
    291369
    292370# -- Missing translation: explode.encoding
    293 # -- Missing translation: explode.metadata_set
     371explode.metadata_set:Ù
     372عيار واصفات الؚيانات (إسÙ
     373 Ù
     374ساحة) لتصدير كل واصفات الؚيانات Ù
     375ثله  # Updated 11-Oct-2007 by kkhalafala
    294376explode.plugin:الÙ
    295377قاؚس الÙ
     
    316398Ø© إؚدأ عند تثؚيت القرص الÙ
    317399ضغوط.
    318 # -- Missing translation: exportcol.desc
    319 # -- Missing translation: exportcol.noinstall
     400exportcol.desc:ÈÑãÌÉ PERL ÊÓÊÎÏã áÊÕÏíÑ æÇÍÏÉ Ãæ ÃßËÑ ãä ÇáãÌãæÚÇÊ Åáì ÞÑÕ ãÏãÌ Ýí ÈíÆÉ Windows.  # Updated 2-Oct-2007 by usamasa
     401exportcol.noinstall:إن؎اء قرص Ù
     402دÙ
     403ج لت؎غيل الÙ
     404كتؚة Ù
     405ؚا؎رة Ù
     406نه ؚحيث لا يتÙ
     407 ØªØ«ØšÙŠØª ØŽÙŠ في الحاسؚ الÙ
     408ضيف  # Updated 8-Oct-2007 by kkhalafala
    320409exportcol.params:[خيارات] إسÙ
    321410
     
    344433 ÙŠØªÙ
    345434 Ø¥Ù†ØŽØ§Ø¡ %s.
    346 # -- Missing translation: exportcol.instructions
    347 # -- Missing translation: exportcol.non_exist_files
     435exportcol.instructions:áÅäÔÇÁ ÞÑÕ ãÏãÌ ÐÇÊí ÇáÊÔÛíá æÇáÊËÈíÊ Ýí ÈíÆÉ Windows¡ ÇäÓÎ ãÍÊæÇíÊ åÐÇ ÇáãÌáÏ Åáì ÇáÞÑÕ ÇáãÏãÌ.  # Updated 2-Oct-2007 by usamasa
     436exportcol.non_exist_files:واحد أو أكثر Ù
     437ن الÙ
     438لفات و الÙ
     439جلدات التالية لÙ
     440 ÙŠØªÙ
     441 Ø§Ù„عثور عليه  # Updated 11-Oct-2007 by kkhalafala
    348442exportcol.success:exportcol.pl نجح:
    349443exportcol.output_dir:الÙ
     
    351445وعات الÙ
    352446صدرة (%s) هي في %s.
    353 # -- Missing translation: exportcol.export_coll_not_installed
     447exportcol.export_coll_not_installed:æÙíÝÉ ÇáÊÕÏíÑ Åáì ÞÑÕ ãÏãÌ áã Êßä ãËÈÊÉ.  # Updated 26-Sep-2007 by usamasa
    354448
    355449# -- import.pl --
    356450
    357 # -- Missing translation: import.archivedir
    358 
    359 # -- Missing translation: import.manifest
     451import.archivedir:ÍíË ÓÊäÊåí ÇáãæÇÏ ÇáãÍæáÉ.  # Updated 21-Sep-2007 by usamasa
     452
     453import.manifest:Ù
     454لف XML الذي يفصل Ù
     455ا هي الÙ
     456لفات التي يجؚ ان تستورد. Used instead of recursively descending the import folder, typically for incremental building.  # Updated 11-Oct-2007 by kkhalafala
    360457
    361458import.cannot_open_stats_file:تحذير: لا يÙ
     
    392489# -- Missing translation: import.faillog
    393490
    394 # -- Missing translation: import.groupsize
    395 
    396 # -- Missing translation: import.gzip
    397 
    398 # -- Missing translation: import.importdir
    399 
    400 # -- Missing translation: import.incremental
     491import.groupsize:ÚÏÏ ÇáæËÇÆÞ ÇáãÓÊæÑÏÉ áãÌãæÚÉ Ýí ãáÝ XML æÇÍÏ  # Updated 21-Sep-2007 by usamasa
     492
     493import.gzip:استخدÙ
     494 gzip لضغط وثا؊ق xml الناتجة ( لا تنسي تضÙ
     495ين ZIPPlug في قا؊Ù
     496Ø© الÙ
     497قاؚس عند الؚناء Ù
     498ن وثا؊ق Ù
     499ضغوطة)  # Updated 11-Oct-2007 by kkhalafala
     500
     501import.importdir:حيث توجد الÙ
     502واد الأصلية  # Updated 11-Oct-2007 by kkhalafala
     503
     504import.incremental:إستيراد الوثا؊ق لجديدة (قيد زÙ
     505ني)دون Ù
     506لفات الأر؎يف الحالية. تعين  -keepold.  # Updated 7-Oct-2007 by kkhalafala
    401507
    402508# -- Missing translation: import.keepold
     
    421527# -- Missing translation: import.OIDtype.hash
    422528
    423 # -- Missing translation: import.OIDtype.incremental
    424 
    425 # -- Missing translation: import.OIDtype.assigned
    426 
    427 # -- Missing translation: import.OIDtype.dirname
    428 
    429 # -- Missing translation: import.OIDmetadata
    430 
    431 # -- Missing translation: import.saveas
     529import.OIDtype.incremental:ÇÓÊÎÏã ÚÏÇÏ æËíÞÉ ÈÓíØ. åí ÃÓÑÚ ÈßËíÑ ãä "hash"¡ æáßä áÇ ÊÍÏÏ äÝÓ ÇáãÍÏÏÇÊ áäÝÓ ÚÏÇÏ ÇáæËíÞÉ¡ æßÐáß áÇ íãßä ÅÖÇÝÉ æËÇÆÞ ÌÏíÏÉ ááÃÑÔíÝÇÊ ÇáãæÌæÏÉ.  # Updated 21-Sep-2007 by usamasa
     530
     531import.OIDtype.assigned:استخدÙ
     532 Ù‚ÙŠÙ
     533Ø© واصفات الؚيانات الÙ
     534عطاة ؚواسطة خيار OIDmetadata (Ù
     535سؚوقة Øš "D"); إذا لÙ
     536 ÙŠØªÙ
     537 ØªØ­Ø¯ÙŠØ¯Ù‡Ø§ لوثيقة Ù
     538حددة سوف يتÙ
     539 Ø¥Ø³ØªØ®Ø¯Ø§Ù
     540 # ؚدلا Ù
     541نها. يجؚ أن تكون هذه الÙ
     542عرفات فريدة.  # Updated 11-Oct-2007 by kkhalafala
     543
     544import.OIDtype.dirname:إستخدÙ
     545 Ø¥Ø³Ù
     546 Ø§Ù„دليل العا؊لي(Ù
     547سؚوقا ØšÙ€ "j" . يجؚ ان تكون هناك وثيقة واحدة في كل دليل، و يجؚ ان يكون أسÙ
     548 Ø§Ù„دليل فريدا. Ù
     549ثال ،  import/b13as/h15ef/page.html سوف يحصل علي الÙ
     550عرف Jh15ef.  # Updated 8-Oct-2007 by kkhalafala
     551
     552import.OIDmetadata:تخصيص عنصر واصفات الؚيانات الذي يحجز للوثيقة الÙ
     553حدد الفريد، للإستخداÙ
     554 Ù
     555ع  -OIDtype=.  # Updated 11-Oct-2007 by kkhalafala
     556
     557import.saveas:هذا لتحديد أي هي؊ات الأر؎يف التي يجؚ توليدها. الهي؊ة الإفتراضية هي  GA.  # Updated 11-Oct-2007 by kkhalafala
    432558
    433559import.saveas.GA:سوف يتÙ
     
    437563 ØªÙˆÙ„يد هي؊ة METS .
    438564
    439 # -- Missing translation: import.out
     565import.out:إسÙ
     566 Ù
     567لف أو أي Ù
     568عالجة لطؚاعة حالة الÙ
     569خرجات  # Updated 7-Oct-2007 by kkhalafala
    440570
    441571import.params:[خيارات] إسÙ
     
    462592؀قت...
    463593
    464 # -- Missing translation: import.sortmeta
    465 
    466 # -- Missing translation: import.statsfile
    467 
    468 # -- Missing translation: import.stats_backup
     594import.sortmeta:فرز الوثا؊ق ألفؚا؊يا ؚواسطة واصفات الؚيانات للؚناء.سوف يتÙ
     595 Ø¥Ø®Ù
     596اد هذا الإجراء إذا كانت قيÙ
     597Ø© groupsize > 1.  # Updated 11-Oct-2007 by kkhalafala
     598
     599import.statsfile:ÇÓã ÇáãáÝ Ãæ ÇáÊÚÇãá áØÈÇÚÉ ÅÍÕÇÁÇÊ ÇáÊÕÏíÑ áÜ.  # Updated 2-Oct-2007 by usamasa
     600
     601import.stats_backup:ÓæÝ íØÈÚ ÇáÍÇáÇÊ áÜ STDERR ÈÏáÇð.  # Updated 26-Sep-2007 by usamasa
    469602
    470603import.verbosity:ضؚط كÙ
     
    475608# -- export.pl --
    476609
    477 # -- Missing translation: export.exportdir
     610export.exportdir:حيث تنتهي الÙ
     611واد الÙ
     612صدرة  # Updated 11-Oct-2007 by kkhalafala
    478613
    479614export.cannot_open_stats_file:تحذير: لا يÙ
     
    485620دونة الأخطاء %s
    486621
    487 # -- Missing translation: export.cannot_sort
     622export.cannot_sort:ÊÍÐíÑ: ãáÝ export.pl áÇ íãßäå ÊÑÊíÈ ÇáæËÇÆÞ ÚäÏãÇ ÊæÖÚ Ýí ãÌãæÚÇÊ> 1. ÎíÇÑ ÇáÊÑÊíÈ ÓæÝ íÊã ÊÌÇåáå.  # Updated 21-Sep-2007 by usamasa
    488623
    489624export.collectdir:Ù
     
    498633ستورد إلي STDOUT.
    499634
    500 # -- Missing translation: export.desc
    501 
    502 # -- Missing translation: export.faillog
    503 
    504 # -- Missing translation: export.groupsize
    505 
    506 # -- Missing translation: export.gzip
    507 
    508 # -- Missing translation: export.importdir
    509 
    510 # -- Missing translation: export.keepold
    511 
    512 # -- Missing translation: export.maxdocs
    513 
    514 # -- Missing translation: export.listall
     635export.desc:نص PERL الÙ
     636ستخدÙ
     637 Ù„تصدير واحدة أو أكثر Ù
     638ن الÙ
     639جÙ
     640وعات إلي قرص Ù
     641دÙ
     642ج ن؞اÙ
     643 Ø§Ù„نوافذ.  # Updated 11-Oct-2007 by kkhalafala
     644
     645export.faillog:ÝÔá Ýí ÇÓã ãáÝ ÇáÓÌá. åÐÇ ÇáÓÌá íÓÊÞÈá ÃÓãÇÁ Ãí ãáÝÇÊ ÊÝÔá ÚãáíÉ ÊÔÛíáåÇ. (Default: collectdir/collname/etc/fail.log)  # Updated 21-Sep-2007 by usamasa
     646
     647export.groupsize:العدد الأدني للوثا؊ق / صفحة.  # Updated 11-Oct-2007 by kkhalafala
     648
     649export.gzip:ÇÓÊÎÏã gzip áÖÛØ æËÇÆÞ xml (áÇ ÊäÓ Ãä ÊÖãä ZIPPlug Ýí ÞÇÆãÉ ÈÑÇãÌß ÇáãÖãäÉ ÚäÏ ÇáÈäÇÁ ãä æËÇÆÞ ãÖÛæØÉ).  # Updated 1-Oct-2007 by usamasa
     650
     651export.importdir:حيث توجد الÙ
     652واد الأصلية  # Updated 8-Oct-2007 by kkhalafala
     653
     654export.keepold:áä ÊÏãÑ ÇáãÍÊæì ÇáÍÇáí ÇáãæÌæÏ Ýí Ïáíá ÇáÊÕÏíÑ.  # Updated 2-Oct-2007 by usamasa
     655
     656export.maxdocs:العدد الأقصي للوثا؊ق للتصدير.  # Updated 11-Oct-2007 by kkhalafala
     657
     658export.listall:ÇÚÑÖ ßÇÝÉ ÊÑßíÈÇÊ ÇáãÊÇÍÉ ãÚ ÇáÃãÑ save as  # Updated 2-Oct-2007 by usamasa
    515659
    516660export.saveas:نسق تصدير الوثا؊ق.
     
    522666export.saveas.GA:نسق أر؎يف قرينستون
    523667
    524 # -- Missing translation: export.saveas.MARCXML
    525 
    526 # -- Missing translation: export.saveas_version
    527 
    528 # -- Missing translation: export.out
     668export.saveas.MARCXML:MARC XML هي؊ة (إصدارة MARC 21)  # Updated 11-Oct-2007 by kkhalafala
     669
     670export.saveas_version:ÕÇÍáÉ ÍÇáíÇ ãÚ 'saveas METS' ÝÞØ¡ ÇáÎíÇÑÇÊ åí 'greenstone'¡ áÜ Greenstone METSK Ãæ 'fedora' áÜ Fedora METS.  # Updated 21-Sep-2007 by usamasa
     671
     672export.out:ÇÓã ÇáãáÝ Ãæ ÇáÅÌÑÇÁ ÇáÐí ÓÊØÈÚ ÍÇáÉ ÇáãÎÑÌÇÊ Úáíå.  # Updated 26-Sep-2007 by usamasa
    529673
    530674export.params:[خيارات] إسÙ
     
    536680وعة2 ...
    537681
    538 # -- Missing translation: export.removeold
     682export.removeold:سوف يتÙ
     683 Ø¥Ø²Ø§Ø­Ø© الÙ
     684حتويات القديÙ
     685Ø© في دليل التصدير  # Updated 11-Oct-2007 by kkhalafala
    539686
    540687export.removing_export:حذف الÙ
     
    542689سار التصدير...
    543690
    544 # -- Missing translation: export.sortmeta
    545 
    546 # -- Missing translation: export.statsfile
    547 
    548 # -- Missing translation: export.stats_backup
     691export.sortmeta:ÑÊÈ ÇáæËÇÆÞ åÌÇÆíÇð ÈÈíÇäÇÊ ãíÊÇÏÇÊÇ ÇáÈäÇÁ, æåÐÇ áíä íÊã áæ ßÇä groupsize > 1.  # Updated 26-Sep-2007 by usamasa
     692
     693export.statsfile:ÇÓã ÇáãáÝ Ãæ ØÈÇÚÉ ÇáÅÍÕÇÁÇÊ ÇáãÕÏÑÉ Åáíå.  # Updated 1-Oct-2007 by usamasa
     694
     695export.stats_backup:سيتÙ
     696 Ø·ØšØ§Ø¹Ø© إحصاءات لـ STDERR كؚديل.  # Updated 2-Oct-2007 by usamasa
    549697
    550698export.verbosity:ضؚط كÙ
     
    560708وعة.
    561709
    562 # -- Missing translation: mkcol.bad_name_cvs
    563 
    564 # -- Missing translation: mkcol.bad_name_modelcol
    565 
    566 # -- Missing translation: mkcol.cannot_find_modelcol
     710mkcol.bad_name_cvs:ÎØÃ: áÇ íãßä Ãä ÊÓãì ÇáãÌãæÚÉ ÈÇÓã CVS áÃä åÐÇ ÞÏ íÊÏÇÎá ãÚ ÇáÃÏáÉ ÇáãäÔÃÉ ÈæÇÓØÉ äÙÇã CVS versioning .  # Updated 21-Sep-2007 by usamasa
     711
     712mkcol.bad_name_modelcol:ÎØÃ: áÇ íãßä Ãä ÊÓãì ãÌãæÚÉ ÈÇáÇÓã modelcol áÃä åÐÇ ÇáÇÓã íÎÊÕ ÈãÌãæÚÉ model .  # Updated 21-Sep-2007 by usamasa
     713
     714mkcol.cannot_find_modelcol:خطأ: لÙ
     715 ÙŠØªÙ
     716 Ø§Ù„عثور علي الÙ
     717جÙ
     718وعة النÙ
     719وذجية%s  # Updated 8-Oct-2007 by kkhalafala
    567720
    568721mkcol.col_already_exists:خطأ: هذه الÙ
     
    572725ن Ù‚ØšÙ„.
    573726
    574 # -- Missing translation: mkcol.collectdir
     727mkcol.collectdir:الدليل حيث تن؎؊ الÙ
     728جÙ
     729وعة الجديدة  # Updated 7-Oct-2007 by kkhalafala
    575730
    576731mkcol.creating_col:إن؎اء الÙ
     
    583738وعة.
    584739
    585 # -- Missing translation: mkcol.creator_undefined
    586 
    587 # -- Missing translation: mkcol.desc
     740mkcol.creator_undefined:خطأ: لÙ
     741 ÙŠØªÙ
     742 ØªØ¹Ø±ÙŠÙ الÙ
     743ن؎يء. هذا الÙ
     744تغير Ù
     745طلوؚ للتعرف على التكرار في أسÙ
     746اء الÙ
     747جÙ
     748وعات.  # Updated 2-Oct-2007 by usamasa
     749
     750mkcol.desc:نص PERL الذي يستخدÙ
     751 Ù„إن؎اء هيكل دليل لÙ
     752جÙ
     753وعة قرينستون جديدة.  # Updated 8-Oct-2007 by kkhalafala
    588754
    589755mkcol.doing_replacements:إجراء إستؚدال ل %s
     
    637803وعة
    638804
    639 # -- Missing translation: mkcol.plugin
    640 
    641 # -- Missing translation: mkcol.public
     805mkcol.plugin:áÇÓÊÎÏÇã Perl plugin module (ÑÈãÇ ÊÌÏ plugins ãÊÚÏÏÉ).  # Updated 21-Sep-2007 by usamasa
     806
     807mkcol.public:لو كان لهذه الÙ
     808جÙ
     809وعة Ù
     810دخل تصفح ؚالÙ
     811ختصرات.  # Updated 2-Oct-2007 by usamasa
    642812mkcol.public.true:Ù
    643813جÙ
     
    660830وعة.
    661831
    662 # -- Missing translation: mkcol.win31compat
     832mkcol.win31compat:في كل حال يجؚ ان يتطاؚق اسÙ
     833 Ø§Ù„Ù
     834جÙ
     835وعة Ù
     836ع تقاليد Ù
     837لفاتWindows 3.1  (Ù
     838ثال ليس أكثر Ù
     839ن 8 Ù
     840حارف).  # Updated 11-Oct-2007 by kkhalafala
    663841mkcol.win31compat.true:إسÙ
    664842 Ø§Ù„Ù
     
    671849# -- pluginfo.pl --
    672850
    673 # -- Missing translation: pluginfo.collection
     851pluginfo.collection:إعطاء Ù
     852جÙ
     853وعة إسÙ
     854ا سوف يجعل Ù
     855لف plugoutinfo.pl ين؞ر أولا في collect/collection-name/perllib/plugouts . إذا لÙ
     856 ÙŠØªÙ
     857 Ø§Ù„عثور علي plugout سوف يتÙ
     858 Ø§Ù„ؚحث في الÙ
     859جلد العاÙ
     860 perllib/plugouts .
    674861
    675862# -- Missing translation: pluginfo.desc
     
    711898# -- plugoutinfo.pl --
    712899
    713 # -- Missing translation: plugoutinfo.collection
    714 
    715 # -- Missing translation: plugoutinfo.desc
     900plugoutinfo.collection:إعطاء اسÙ
     901 Ù„Ù„Ù
     902جÙ
     903وعة سوف يجعل الÙ
     904لف plugoutinfo.pl يؚحث أولا في collect/collection-name/perllib/plugouts . Ø«Ù
     905 ØšØ¹Ø¯ ذلك سوف يؚحث في دليل perllib/plugouts العاÙ
     906.  # Updated 2-Oct-2007 by usamasa
     907
     908plugoutinfo.desc:ØÈÇÚÉ ãÚáæãÇÊ Úä ÅäåÇÁ ÇáÈÑäÇãÌ.  # Updated 10-Oct-2007 by usamasa
    716909
    717910plugoutinfo.general_options:الخيارات العاÙ
     
    733926plugoutinfo.params:[خيارات] plugout-name
    734927
    735 # -- Missing translation: plugoutinfo.passing_options
    736 
    737 # -- Missing translation: plugoutinfo.specific_options
     928plugoutinfo.passing_options:ÇáÎíÇÑÇÊ íãßä ÊÎØíåÇ Úä ØÑíÞ ãáÝ ÇáÎÕÇÆÕ collect.cfg.  # Updated 26-Sep-2007 by usamasa
     929
     930plugoutinfo.specific_options:الخيارات الÙ
     931خصصة Ù
     932عرفة ضÙ
     933ن plugout و هي Ù
     934تاحة فقط لـ plugout.  # Updated 11-Oct-2007 by kkhalafala
    738935
    739936
     
    742939#
    743940
    744 # -- Missing translation: MARCXMLPlugout.desc
    745 
    746 # -- Missing translation: METSPlugout.desc
     941MARCXMLPlugout.desc:MARC xml هي؊ة.  # Updated 11-Oct-2007 by kkhalafala
     942
     943METSPlugout.desc:METS ÈÇÓÊÎÏÇã ÎÕÇÆÕ Greenstone  # Updated 21-Sep-2007 by usamasa
    747944
    748945BasPlugout.desc:Base class for all the export plugouts.
     
    752949DSpacePlugout.desc::DSpace هي؊ة أر؎يف.
    753950
    754 # -- Missing translation: METSPlugout.version
    755 
    756 # -- Missing translation: BasPlugout.group_size
    757 
    758 # -- Missing translation: BasPlugout.output_info
    759 
    760 # -- Missing translation: BasPlugout.output_handle
     951METSPlugout.version:حالياً Ù
     952تاحة فقط Ù
     953ع 'saveas METS'، الخيارات هي 'greenstone' لؚرناÙ
     954ج Greenstone : METS، أو fedora لـ Fedora METS.  # Updated 2-Oct-2007 by usamasa
     955
     956BasPlugout.group_size:ÚÏÏ ÇáæËÇÆÞ áãÌãæÚÉ ÏÇÎá ãáÝ XML æÇÍÏ.  # Updated 2-Oct-2007 by usamasa
     957
     958BasPlugout.output_info:الإ؎ارة لكيان الÙ
     959علوÙ
     960ات الأر؎يفي الذي ستخدÙ
     961 Ù„حف؞ الÙ
     962علوÙ
     963ات عن الأر؎يفات.  # Updated 11-Oct-2007 by kkhalafala
     964
     965BasPlugout.output_handle:واصفة الÙ
     966لف تستخدÙ
     967 Ù„إرسال الÙ
     968علوÙ
     969ات الÙ
     970خرجة  # Updated 11-Oct-2007 by kkhalafala
    761971
    762972BasPlugout.verbosity:ضؚط كÙ
     
    766976# -- Missing translation: BasPlugout.gzip_output
    767977
    768 # -- Missing translation: BasPlugout.xslt_file
    769 
    770 # -- Missing translation: MARCXMLPlugout.group
    771 
    772 # -- Missing translation: MARCXMLPlugout.mapping_file
    773 
    774 # -- Missing translation: METSPlugout.xslt_txt
    775 
    776 # -- Missing translation: METSPlugout.xslt_mets
     978BasPlugout.xslt_file:تحويل وثيقة عن طريق XSLT في الÙ
     979لف الÙ
     980سÙ
     981ى.  # Updated 2-Oct-2007 by usamasa
     982
     983MARCXMLPlugout.group:الإ؎ارة لكيان الÙ
     984علوÙ
     985ات الأر؎يفي الذي ستخدÙ
     986 Ù„حف؞ الÙ
     987علوÙ
     988ات عن الأر؎يفات.  # Updated 11-Oct-2007 by kkhalafala
     989
     990MARCXMLPlugout.mapping_file:إن؎اء قسÙ
     991 Ù
     992نفصل لآي صفحة Ù
     993ن Ù
     994لف PDF .  # Updated 8-Oct-2007 by kkhalafala
     995
     996METSPlugout.xslt_txt:Íæá ãáÝ METS doctxt.xml Ðæ XSLT Ýí ÍÞá ÇáÇÓã.  # Updated 26-Sep-2007 by usamasa
     997
     998METSPlugout.xslt_mets:ÊÍæíá ãáÝÇÊ docmets.xml ÇáÎÇÕÉ ÈÜ METS ãÚ ÇáÜ XSLT Ýí ÇáãáÝ ÇáãÓãì.  # Updated 21-Sep-2007 by usamasa
    777999
    7781000#
     
    8031025وجودة فقط.
    8041026
    805 # -- Missing translation: AZCompactList.freqsort
     1027AZCompactList.freqsort:أفرز ؚالعقد دون الفرز الألفؚا؊ي.  # Updated 11-Oct-2007 by kkhalafala
    8061028
    8071029# -- Missing translation: AZCompactList.maxcompact
    8081030
    809 # -- Missing translation: AZCompactList.metadata
     1031AZCompactList.metadata:حقل واصفات ؚيانات وحيد أو قا؊Ù
     1032Ø© Ù
     1033فصولة ؚفاصلة ، تستخدÙ
     1034 Ù„لتصنيف. إذا تÙ
     1035 ØªØ­Ø¯ÙŠØ¯ قا؊Ù
     1036Ø© سوف يستخدÙ
     1037 Ø£ÙˆÙ„ نوع
    8101038
    8111039# -- Missing translation: AZCompactList.mincompact
    8121040
    813 # -- Missing translation: AZCompactList.mingroup
     1041AZCompactList.mingroup:القيÙ
     1042Ø© الصغري التي تتسؚؚ ؚتكوين Ù
     1043جÙ
     1044وعة في في الترتيؚ الهرÙ
     1045ي  # Updated 11-Oct-2007 by kkhalafala
    8141046
    8151047# -- Missing translation: AZCompactList.minnesting
    8161048
    817 # -- Missing translation: AZCompactList.recopt
     1049AZCompactList.recopt:Ù
     1050ستخدÙ
     1051Ø© في واصفات ؚيانات Ù
     1052تداخلة Ù
     1053ثل واصفات السنة / الÙ
     1054ن؞Ù
     1055Ø©.  # Updated 11-Oct-2007 by kkhalafala
    8181056# -- Missing translation: AZCompactList.sort
    8191057
    8201058# -- Missing translation: AZCompactSectionList.desc
    8211059
    822 # -- Missing translation: AZList.desc
    823 
    824 # -- Missing translation: AZList.metadata
    825 
    826 # -- Missing translation: AZSectionList.desc
    827 
    828 # -- Missing translation: BasClas.bad_general_option
     1060AZList.desc:ÈÑäÇãÌ ááÊÕäíÝ íÑÊÈ åÌÇÆíÇ (Ã-í æ a-z æ A-Z æ 0-9). æíäÊÌ åÐÇ ÇáÈÑäÇãÌ ÞÇÆãÉ åÌÇÆíÉ ÈÇáæËÇÆÞ ÇáãÑÊÈÉ ÊÍÊ ßá ÍÑÝ.  # Updated 26-Sep-2007 by usamasa
     1061
     1062AZList.metadata:حقل واصفات ؚيانات واحد أو قا؊Ù
     1063Ø© حقول واصفات ؚيانات Ù
     1064فصولة ؚفاصلة تستخدÙ
     1065 Ù„لتصنيف.تؚعا للترتيؚ الذي تدل عليه القا؊Ù
     1066ة، فان اول حقل لواصفات ؚيانات يتÙ
     1067ن قيÙ
     1068Ø© سوف يستخدÙ
     1069. سوف يتÙ
     1070 ÙØ±Ø² القا؊Ù
     1071Ø© وفقا لهذا العنصر إلا إذا استخدÙ
     1072  -sort .إذا لÙ
     1073 ÙŠØªÙ
     1074 ØªØ­Ø¯ÙŠØ¯ واصفة ؚيانات فان جÙ
     1075يع الوثا؊ق سيتÙ
     1076 Ø¥Ø¯Ø±Ø§Ø¬Ù‡Ø§ في القا؊Ù
     1077ة، والا سوي الوثا؊ق التي تتضÙ
     1078ن قيÙ
     1079Ø© واصفات الؚيانات ستدرج.  # Updated 11-Oct-2007 by kkhalafala
     1080
     1081AZSectionList.desc:ÇáÊäæÚ Ýí ÇáÞÇÆãÉ ÇáåÌÇÆíÉ ÈÊÕäíÝ ÇáÃÞÓÇã ÝÖáÇ Úä ÇáæËÇÆÞ. ÊÑÊÈ ÇáãÏÇÎá ÈãíÊÇÏÇÊÇ ãÓÊæì ÇáÞÓã  # Updated 26-Sep-2007 by usamasa
     1082
     1083BasClas.bad_general_option:الÙ
     1084صنف  %s يستخدÙ
     1085 Ø®ÙŠØ§Ø±Ø§Øª غير صحيحة.إفحص Ù
     1086لف الإعداد collect.cfg .  # Updated 8-Oct-2007 by kkhalafala
    8291087
    8301088BasClas.builddir:أين توضع الك؎افات الÙ
     
    8651123ن السنة فقط.
    8661124
    867 # -- Missing translation: DateList.desc
    868 
    869 # -- Missing translation: DateList.metadata
    870 
    871 # -- Missing translation: DateList.reverse_sort
    872 
    873 # -- Missing translation: DateList.nogroup
     1125DateList.desc:ÈÑäÇãÌ ÇáãÕäÝ ááÊÑÊíÈ ÈÇáÊÇÑíÎ. íÞæã ÊáÞÇÆíÇð ÈÇáÊÑÊíÈ ÈÍÞá ÇáãíÊÇÏÇÊÇ ÇáÎÇÕ ÈÇáÊÇÑíÎ. ÊÕÇÛ ÇáÊæÇÑíÎ Ýí ÕæÑÉ yyyymmdd Ãæ yyyy-mm-dd.  # Updated 1-Oct-2007 by usamasa
     1126
     1127DateList.metadata:واصفات الؚيانات التي تتضÙ
     1128ن التواريخ الÙ
     1129صنف ؚها.الصيغة الÙ
     1130توقعة هي  yyyymmdd أو yyyy-mm-dd. يÙ
     1131كن أن تكون قا؊Ù
     1132Ø© Ù
     1133فصولة ؚفاصلة، و اول تاريخ يوجد سوف يستخدÙ
     1134.  # Updated 11-Oct-2007 by kkhalafala
     1135
     1136DateList.reverse_sort:فرز الوثا؊ق في ترتيؚ زÙ
     1137ني Ù
     1138عكوس (الأحدث أولا).  # Updated 7-Oct-2007 by kkhalafala
     1139
     1140DateList.nogroup:جعل كل سنة Ù
     1141دخل فردي في قا؊Ù
     1142Ø© افقيه ؚدلا Ù
     1143ن ان تÙ
     1144تد سنوات ØšÙ
     1145داخل قليلة. (وهذا يÙ
     1146كن ان تستخدÙ
     1147 Ø§ÙŠØ¶Ø§ Ù
     1148ع bymonth - الخيار لجعل كل ؎هر Ù
     1149دخل فردي ؚدلا Ù
     1150ن الدÙ
     1151ج).  # Updated 11-Oct-2007 by kkhalafala
    8741152
    8751153DateList.no_special_formatting:لا تعرض Ù
     
    8801158# -- Missing translation: DateList.sort
    8811159
    882 # -- Missing translation: GenericList.always_bookshelf_last_level
     1160GenericList.always_bookshelf_last_level:أن؎؊ رف كتاؚ حتي إذا كان هناك عنصر واحد في  في كل Ù
     1161جÙ
     1162وعة في ورقة العقد.  # Updated 11-Oct-2007 by kkhalafala
    8831163GenericList.classify_sections:تصنيف الأقساÙ
    8841164 ØšØ¯Ù„ا Ù
    8851165ن الوثا؊ق.
    886 # -- Missing translation: GenericList.desc
     1166GenericList.desc:قا؊Ù
     1167Ø© Ù
     1168صنف عاÙ
     1169Ø© و Ù
     1170رنة وتتضÙ
     1171ن Ù
     1172ع؞Ù
     1173 Ù‚درات azcompactlist ، ولكن ؚافضل يونيكود ، واصفات ؚيانات وقدرات الفرز.  # Updated 11-Oct-2007 by kkhalafala
    8871174# -- Missing translation: GenericList.metadata
    888 # -- Missing translation: GenericList.partition_size_within_level
    889 # -- Missing translation: GenericList.partition_type_within_level
    890 # -- Missing translation: GenericList.sort_leaf_nodes_using
    891 # -- Missing translation: GenericList.use_hlist_for
    892 
    893 # -- Missing translation: HFileHierarchy.desc
     1175# -- Missing translation: GenericList.partition_name_length
     1176GenericList.partition_size_within_level:ÚÏÏ ÇáãæÇÏ Ýí ßá ÞÓã (íãßä ÇáÍÕæá ÚáíåÇ ÝÞØ ÚäÏãÇ partition_type_within_level ãÖÈæØ Úáì 'constant_size').  # Updated 21-Sep-2007 by usamasa
     1177GenericList.partition_type_within_level:تحديد التقسيÙ
     1178 Ø§Ù„قطاعي : اÙ
     1179ا 'per_letter',
     1180GenericList.sort_leaf_nodes_using:ÍÞæá ÇáãíÊÇÏÇÊÇ ÇáãÓÊÎÏãÉ áÊÑÊíÈ ÇáÃæÑÇÞ. ÇÓÊÎÏã '|' ßí ÊÝÕá Èíä ãÌãæÚÇÊ ÇáãíÊÇÏÇÊÇ ßí íßæä ÇáÊÑÊíÈ ãÖÈæØ. æ ';' ááÝÕá ÍÞæá ÇáãíÊÇÏÇÊÇ Ýí ÍÞá ãÌãæÚÉ Úáì ÍÏÉ.  # Updated 10-Oct-2007 by usamasa
     1181GenericList.use_hlist_for:حقول الÙ
     1182يتاداتا تستخدÙ
     1183 hlist ؚدلا Ù
     1184ن vlist. استخدÙ
     1185 (،) لفصل Ù
     1186جÙ
     1187وعات الÙ
     1188يتاداتا، و(؛) لفصل حقول الÙ
     1189يتاداتا في كل Ù
     1190جÙ
     1191وعة.  # Updated 2-Oct-2007 by usamasa
     1192
     1193HFileHierarchy.desc:Ù
     1194صنف الÙ
     1195قاؚس لتوليد تصنيفات على اساس هرÙ
     1196ي في هيكل الÙ
     1197لف التكÙ
     1198يلي  # Updated 11-Oct-2007 by kkhalafala
    8941199
    8951200# -- Missing translation: Hierarchy.desc
    8961201
    897 # -- Missing translation: Hierarchy.documents_last
     1202Hierarchy.documents_last:عرض عقد الوثيقة ؚعد عقد الÙ
     1203صنف  # Updated 11-Oct-2007 by kkhalafala
    8981204
    8991205# -- Missing translation: Hierarchy.hfile
     
    9011207# -- Missing translation: Hierarchy.hlist_at_top
    9021208
    903 # -- Missing translation: Hierarchy.reverse_sort
    904 
    905 # -- Missing translation: Hierarchy.separator
     1209Hierarchy.reverse_sort:فرز العقد في ترتيؚ عكسي (يستخدÙ
     1210 Ù
     1211ع -sort).  # Updated 11-Oct-2007 by kkhalafala
     1212
     1213Hierarchy.separator:ÊÚÈíÑ ãÚÊÇÏ íÓÊÎÏã ááÝÇÕá¡ ÅÐÇ ßäÊ ÊÓÊÎÏã ãíÊÇÏÇÊÇ ãåíßáÉ.  # Updated 26-Sep-2007 by usamasa
    9061214
    9071215# -- Missing translation: Hierarchy.sort
     
    9091217# -- Missing translation: Hierarchy.suppressfirstlevel
    9101218
    911 # -- Missing translation: Hierarchy.suppresslastlevel
    912 
    913 # -- Missing translation: HTML.desc
     1219Hierarchy.suppresslastlevel:تجاهل الجزء الأخير Ù
     1220ن قيÙ
     1221Ø© واصفات الؚيانات.و هذا Ù
     1222فيد لواصفات الؚيانات التي تكون كل قيÙ
     1223Ø© فيها فريدة Ù
     1224ثل Ù
     1225سار Ù
     1226لف.  # Updated 11-Oct-2007 by kkhalafala
     1227
     1228HTML.desc:íäÔíÁ ÊÕäíÝ ÝÇÑÛ æåæ ÚÈÇÑÉ Úä ÑÇÈØÉ áÕÝÍÉ ÅäÊÑäÊ.  # Updated 10-Oct-2007 by usamasa
    9141229
    9151230HTML.url:رؚط عنوان صفحة الÙ
     
    9181233# -- Missing translation: List.desc
    9191234
    920 # -- Missing translation: List.metadata
    921 
    922 # -- Missing translation: List.sort
     1235List.metadata:حقل واصفات ؚيانات وحيد أو قا؊Ù
     1236Ø© Ù
     1237فصولة ؚفاصلة ، تستخدÙ
     1238 Ù„لتصنيف. إذا تÙ
     1239 ØªØ­Ø¯ÙŠØ¯ قا؊Ù
     1240Ø© سوف يستخدÙ
     1241 Ø£ÙˆÙ„ نوع واصفات ؚيانات لديه قيÙ
     1242Ø©. يÙ
     1243كن إستخداÙ
     1244ها Ù
     1245ع  -firstvalueonly و -allvalues ؎ارات التÙ
     1246يز, لإستخداÙ
     1247 Ø§Ù„قيÙ
     1248Ø© الأولي أو كل القيÙ
     1249 ÙÙŠ القا؊Ù
     1250Ø©.  # Updated 7-Oct-2007 by kkhalafala
     1251
     1252List.sort:ÍÞá ÇáãíÊÇÏÇÊÇ ááÊÑÊíÈ. ÇÓÊÎÏã '-sort nosort' áæ ßäÊ áÇ ÊÑíÏ ÊÑÊíÈ.  # Updated 2-Oct-2007 by usamasa
    9231253
    9241254Phind.desc:Ù
     
    9341264# -- Missing translation: Phind.min_occurs
    9351265
    936 # -- Missing translation: Phind.savephrases
    937 
    938 # -- Missing translation: Phind.suffixmode
    939 
    940 # -- Missing translation: Phind.text
     1266Phind.savephrases:ذا تÙ
     1267 ØªØ¹ÙŠÙ†ØŒØªØ®Ø²Ù† Ù
     1268علوÙ
     1269ات العؚارة في Ù
     1270لف Ù
     1271عطي علي اساس نص. و لعله Ù
     1272ن الÙ
     1273ستحسن إستخداÙ
     1274 Ù
     1275سار Ù
     1276طلق  # Updated 11-Oct-2007 by kkhalafala
     1277
     1278Phind.suffixmode:Ù
     1279عاÙ
     1280ل smode لؚرناÙ
     1281ج استخلاص العؚارات. القيÙ
     1282Ø© صفر تعني أن قا؊Ù
     1283Ø© الكلÙ
     1284ات الÙ
     1285وقوفة تÙ
     1286 ØªØ¬Ø§Ù‡Ù„ها، والقيÙ
     1287Ø© 1 تعني أن قا؊Ù
     1288Ø© الكلÙ
     1289ات الÙ
     1290وقوفة تÙ
     1291 Ø§Ø³ØªØ®Ø¯Ø§Ù
     1292ها.  # Updated 2-Oct-2007 by usamasa
     1293
     1294Phind.text:النص الÙ
     1295ستخدÙ
     1296 Ù„ؚناء هرÙ
     1297ية الجÙ
     1298لة.  # Updated 11-Oct-2007 by kkhalafala
    9411299
    9421300# -- Missing translation: Phind.thesaurus
     
    9491307لة.
    9501308
    951 # -- Missing translation: SectionList.desc
    952 
    953 # -- Missing translation: Collage.desc
    954 
    955 # -- Missing translation: Collage.geometry
    956 
    957 # -- Missing translation: Collage.maxDepth
    958 
    959 # -- Missing translation: Collage.maxDisplay
    960 
    961 # -- Missing translation: Collage.imageType
    962 
    963 # -- Missing translation: Collage.bgcolor
     1309RecentDocumentsList.desc:Ù
     1310صنف يوفر قا؊Ù
     1311Ø© ؚالوثا؊ق الÙ
     1312ضافة أو الÙ
     1313عدلة حديثا.  # Updated 11-Oct-2007 by kkhalafala
     1314
     1315# -- Missing translation: RecentDocumentsList.include_docs_added_since
     1316
     1317# -- Missing translation: RecentDocumentsList.include_most_recently_added
     1318
     1319# -- Missing translation: RecentDocumentsList.sort
     1320
     1321SectionList.desc:نفس قا؊Ù
     1322Ø© الÙ
     1323صنف انÙ
     1324ا ÙŠØŽÙ
     1325ل جÙ
     1326يع أقساÙ
     1327 Ø§Ù„وثيقة (ؚإستؚعاد الÙ
     1328ستوي الأول) ؚدلا Ù
     1329ن Ù
     1330جرد الÙ
     1331ستوي الأول الوثيقة نفسها.  # Updated 8-Oct-2007 by kkhalafala
     1332
     1333Collage.desc:وهو Ù
     1334قاؚس يستخدÙ
     1335 Ù„إ؞هار صور الفن التصويري الÙ
     1336وجودة في الÙ
     1337جÙ
     1338وعة.  # Updated 11-Oct-2007 by kkhalafala
     1339
     1340Collage.geometry:اؚعاد الفن التصويري للوحة. لوحة 600 ؚكسل في 400 ؚكسل واسعة عالية ، على سؚيل الÙ
     1341ثال ، تحدد حسؚ هندسة 600x400  # Updated 11-Oct-2007 by kkhalafala
     1342
     1343Collage.maxDepth:صور للتجÙ
     1344يع Ù
     1345ن Ù
     1346صنف تصفح اساسي . يضؚط هذا العÙ
     1347ق الأقصي لعÙ
     1348لية الإنعكاس  # Updated 11-Oct-2007 by kkhalafala
     1349
     1350Collage.maxDisplay:الحد الاقصى لعدد الصور ت؞هر في الفن التصويري في اي وقت Ù
     1351ن الاوقات.  # Updated 11-Oct-2007 by kkhalafala
     1352
     1353Collage.imageType:تستخدÙ
     1354 Ù„لضؚط ، ؚالإعراؚ عن اسÙ
     1355 Ø§Ù
     1356تدادات الÙ
     1357لف ، Ù
     1358اهي الÙ
     1359لفات الÙ
     1360ستخدÙ
     1361Ø© في الفن التصويري . قا؊Ù
     1362Ø© ؚاسÙ
     1363 Ø¥Ù
     1364تدادات الÙ
     1365لف Ù
     1366فصولة ؚـالرÙ
     1367ز (%%) .  # Updated 11-Oct-2007 by kkhalafala
     1368
     1369Collage.bgcolor:áæä ÇáÎáÝíÉ ÇáÎÇÕÉ ÈãÌãæÚÉ ÇááæÍÇÊ¡ ÇÎÊÑ ÑÞã íÚÈÑ Úä Çááæä (Úáì ÓÈíá ÇáãËÇá #008000 ÓæÝ ÊÚØí äÊíÌÉ Çááæä ÇáÃÎÖÑ).  # Updated 2-Oct-2007 by usamasa
    9641370
    9651371# -- Missing translation: Collage.buttonname
    9661372
    967 # -- Missing translation: Collage.refreshDelay
    968 
    969 # -- Missing translation: Collage.isJava2
    970 
    971 # -- Missing translation: Collage.imageMustNotHave
     1373Collage.refreshDelay:الترتيؚ، ؚالجزء Ù
     1374ن الثانية Ù
     1375جÙ
     1376وعة اللوحات تÙ
     1377 ØªØ¬Ø¯ÙŠØ¯Ù‡Ø§.  # Updated 2-Oct-2007 by usamasa
     1378
     1379Collage.isJava2:يستخدÙ
     1380 Ù„Ù
     1381راقؚة الوقت الذي تدير ف؊ات Java الÙ
     1382ستخدÙ
     1383Ø©. إصدارة اكثر تطورا Ù
     1384ن Java (اي 1.2 Java فصاعدا) ت؎Ù
     1385ل دعÙ
     1386 Ø£ÙƒØ«Ø± تطورا لضؚط  ال؎فافيه في الصور ، وهذا العلÙ
     1387 ÙŠØ³Ø§Ø¹Ø¯ في Ù
     1388راقؚة Ù
     1389ا يحدث ، ؚعض ؚراÙ
     1390ج التصفح غير Ù
     1391دÙ
     1392جه في وقت الت؎غيل Java إصدارة 1.1. تÙ
     1393 ØªØµÙ
     1394يÙ
     1395 applet، افتراضي ، تكت؎ف الÙ
     1396تصفحات إصدارة Java و يعÙ
     1397ل الÙ
     1398تصفح  ويتصرف على هذا الاساس.  # Updated 11-Oct-2007 by kkhalafala
     1399
     1400Collage.imageMustNotHave:ãÓÊÎÏã áÅÎÝÇÁ ÇáÕæÑ ÇáÊí áÇ íÌÈ Ãä ÊÙåÑ Ýí ÇáãÌãæÚÉ¡ ãËá ÕæÑ ÇáÃÒÑÇÑ ÇáÊí Êßæä ÔÑíØ ÇáÊÕÝÍ.  # Updated 26-Sep-2007 by usamasa
    9721401
    9731402# -- Missing translation: Collage.caption
     1403
    9741404
    9751405#
     
    9771407#
    9781408
    979 # -- Missing translation: ArcPlug.desc
     1409ArcPlug.desc:الÙ
     1410فاؚس  # Updated 11-Oct-2007 by kkhalafala
    9801411
    9811412BasPlug.adding:إضافة
     
    10711502قاؚس الإستيراد.
    10721503
    1073 # -- Missing translation: BasPlug.done_acronym_extract
    1074 
    1075 # -- Missing translation: BasPlug.done_acronym_markup
     1504BasPlug.done_acronym_extract:يتÙ
     1505 Ø§Ø³ØªØ®Ø±Ø§Ø¬ الÙ
     1506ختصرات.  # Updated 11-Oct-2007 by kkhalafala
     1507
     1508BasPlug.done_acronym_markup:ÊäÝíÐ ãÎÊÕÇÑÊ áÛÉ ÇáÊÑãíÒ  # Updated 21-Sep-2007 by usamasa
    10761509
    10771510BasPlug.done_email_extract:تÙ
     
    10861519ن نص
    10871520
    1088 # -- Missing translation: BasPlug.extract_acronyms
     1521BasPlug.extract_acronyms:ÇÓÊÎáÕ ÇáãÎÊÕÑÇÊ ãä ÇáäÕ æÇÌÚáåÇ ãíÊÇÏÇÊÇ  # Updated 26-Sep-2007 by usamasa
    10891522
    10901523BasPlug.extract_email:إستخلاص عناوين الؚريد الإلكتروني كواصفات ؚيانات.
     
    11101543BasPlug.extracting:إستخلاص
    11111544
    1112 # -- Missing translation: BasPlug.extracting_acronyms
     1545BasPlug.extracting_acronyms:ÇÓÊÎáÇÕ ÇáãÎÊÕÑÇÊ  # Updated 21-Sep-2007 by usamasa
    11131546
    11141547BasPlug.extract_keyphrases:إستخلاص الجÙ
     
    11381571ن نص
    11391572
    1140 # -- Missing translation: BasPlug.first
     1573BasPlug.first:قا؊Ù
     1574Ø© Ù
     1575نفصلة ؚفاصلة للأحجاÙ
     1576 Ø§Ù„أولي التي تستخلص Ù
     1577ن النص الي حقل واصفات ؚيانات. هذا الحقل يسÙ
     1578ي  'FirstNNN'.  # Updated 11-Oct-2007 by kkhalafala
    11411579
    11421580BasPlug.input_encoding:ترÙ
     
    11451583 ØªØ­ÙˆÙŠÙ„ هذا الترÙ
    11461584يز للوثا؊ق إلي utf8 و يحف؞ داخليا8.
    1147 # -- Missing translation: BasPlug.input_encoding.ascii
    1148 # -- Missing translation: BasPlug.input_encoding.auto
     1585BasPlug.input_encoding.ascii:Plain 7 bit ascii. هذا قد يكون اسرع قليلا Ù
     1586ن استخداÙ
     1587 iso_8859_1. حذار Ù
     1588ن استخداÙ
     1589 Ù‡Ø°Ø§ على Ù
     1590جÙ
     1591وعة Ù
     1592ن الوثا؊ق التي يÙ
     1593كن ان تحتوي على أحرف plain 7 bit ascii رغÙ
     1594 (Ù
     1595ثال،وثا؊ق الÙ
     1596انية أو فرنسية تتضÙ
     1597ن لكنات) ، وؚدلا Ù
     1598ن استخداÙ
     1599 , واستخدÙ
     1600 ØšØ¯Ù„ا iso_8859_1 .  # Updated 11-Oct-2007 by kkhalafala
     1601BasPlug.input_encoding.auto:استخدÙ
     1602 Ø®ÙˆØ§Ø±Ø²Ù
     1603ية تصنيف النص ليتÙ
     1604 Ø§Ù„تعرف التلقا؊ي علي ترÙ
     1605يز كل Ù
     1606صدر وثيقة. و سيكون هذا أؚطأ
    11491607
    11501608BasPlug.input_encoding.unicode:؎يفرة قياسية فقط.
     
    11571615فتاحية
    11581616
    1159 # -- Missing translation: BasPlug.marking_up_acronyms
    1160 
    1161 # -- Missing translation: BasPlug.markup_acronyms
     1617BasPlug.marking_up_acronyms:يتÙ
     1618 ØªØ±Ù
     1619يز الÙ
     1620ختصر  # Updated 8-Oct-2007 by kkhalafala
     1621
     1622BasPlug.markup_acronyms:اضف واصفة ؚيانات الÙ
     1623ختصر الي نص الوثيقة.  # Updated 11-Oct-2007 by kkhalafala
    11621624
    11631625BasPlug.maximum_century:إستخلاص إسÙ
     
    11811643سار.
    11821644
    1183 # -- Missing translation: BasPlug.must_be_implemented
     1645BasPlug.must_be_implemented:BasPlug::قراءة دالة يجؚ تنفيذها في ف؊ة فرعية لÙ
     1646قاؚس Ù
     1647تكررة.  # Updated 11-Oct-2007 by kkhalafala
    11841648
    11851649BasPlug.no_bibliography:لا تحاول غلق التواريخ الؚيؚليوجرافية عند إستخلاص الÙ
     
    12181682لفات
    12191683
    1220 # -- Missing translation: BasPlug.stems
     1684BasPlug.stems:stem  # Updated 7-Oct-2007 by kkhalafala
    12211685
    12221686BasPlug.unsupported_encoding:تحذير: %s تؚدو في ترÙ
     
    12261690 %s
    12271691
    1228 # -- Missing translation: BasPlug.wrong_encoding
    1229 
    1230 # -- Missing translation: BibTexPlug.desc
     1692BasPlug.wrong_encoding:تحذير: %s تÙ
     1693ت قراءتها ؚاستخداÙ
     1694 ØªØ±Ù
     1695يز %s و لكن يؚدو ان ترÙ
     1696يزها هو %s.  # Updated 11-Oct-2007 by kkhalafala
     1697
     1698BibTexPlug.desc:يقراء BibTexPlug الÙ
     1699لفات الؚيؚليوجرافية في هي؊ة BibTex .ين؎؊ BibTexPlug كيان وثيقة لأي Ù
     1700رجع في الÙ
     1701لف. هو ف؊ة فرعية Ù
     1702ن  SplitPlug, لذلك إذا كانت هناك تسجيلات Ù
     1703تعددة كلها تقرأ.  # Updated 11-Oct-2007 by kkhalafala
    12311704
    12321705# -- Missing translation: BookPlug.desc
    12331706
    12341707# -- Missing translation: ConvertToPlug.apply_fribidi
    1235 # -- Missing translation: ConvertToPlug.convert_to
    1236 # -- Missing translation: ConvertToPlug.convert_to.auto
     1708ConvertToPlug.convert_to:Plugin converts to TEXT or HTML or various types of Image (e.g. JPEG, GIF, PNG).
     1709ConvertToPlug.convert_to.auto:تلقا؊يا قÙ
     1710 ØšØ§Ø®ØªÙŠØ§Ø± الهي؊ة الÙ
     1711حولة أيضا .الهي؊ة الÙ
     1712ختارة تعتÙ
     1713د علي نوع الوثيقة الÙ
     1714دخلة ، علي سؚيل الÙ
     1715ثال ، فان  Word يتحول تلقا؊يا الي HTML, ؚينÙ
     1716ا يتÙ
     1717 ØªØ­ÙˆÙŠÙ„ PowerPoint الي هي؊ة Greenstone's PagedImage
    12371718ConvertToPlug.convert_to.html:هي؊ة لغة ترÙ
    12381719يز النص الت؎عؚي.
     
    12421723ConvertToPlug.convert_to.pagedimg_png:PNG هي؊ة.
    12431724
    1244 # -- Missing translation: ConvertToPlug.desc
    1245 # -- Missing translation: ConvertToPlug.keep_original_filename
    1246 # -- Missing translation: ConvertToPlug.use_strings
    1247 
    1248 # -- Missing translation: ConvertToRogPlug.desc
    1249 
    1250 # -- Missing translation: CSVPlug.desc
     1725ConvertToPlug.desc:هذا هو الÙ
     1726قاؚس الذي ورثته هذه الÙ
     1727قاؚس كÙ
     1728ا wordplug ، pptplug ، psplug ، rtfplug
     1729ConvertToPlug.keep_original_filename:ÇÍÊÝÙ ÈÇÓã ÇáãáÝ ÇáÃÕáí ááãáÝÇÊ ÇáãÊÚáÞÉ¡ æßÐáß ááãÍæáÉ Åáì .doc æ.pdf æåßÐÇ.  # Updated 1-Oct-2007 by usamasa
     1730ConvertToPlug.use_strings:áæ ãÌãæÚÉ¡ ÓæÝ íÊã ÇÓÊÑÌÇÚ ÇÓØÑ æÙíÝíÉ áÇÓÊÎáÇÕ ÇáäÕ áæ ÝÔáÊ ÚãáíÉ ÇáÊÍæíá.  # Updated 2-Oct-2007 by usamasa
     1731
     1732ConvertToRogPlug.desc:الÙ
     1733قاؚس الذي يرث Ù
     1734ن RogPlug.  # Updated 11-Oct-2007 by kkhalafala
     1735
     1736CSVPlug.desc:Ù
     1737قاؚس للÙ
     1738لفات في قا؊Ù
     1739Ø© Ù
     1740فصولة ؚفاصلة لقيÙ
     1741 Ø§Ù„هي؊ات. سوف يتÙ
     1742 Ø¥Ù†ØŽØ§Ø¡ وثيقة جديدة لكل سطر في الÙ
     1743لف.  # Updated 11-Oct-2007 by kkhalafala
    12511744
    12521745DBPlug.desc:يستخدÙ
     
    12541747ن قاعدة الؚيانات كوثا؊ق.
    12551748
    1256 # -- Missing translation: DBPlug.title_sub
    1257 
    1258 # -- Missing translation: DSpacePlug.desc
     1749DBPlug.title_sub:إستؚدال التعؚير لتعديل سلسلة نصية Ù
     1750خزنة كعنوان. تستخدÙ
     1751 Ø¹Ù„ÙŠ سؚيل الÙ
     1752ثال، ؚواسطة PDFPlug لإزاحة "صفحة 1" الخ Ù
     1753ن نص
     1754
     1755DSpacePlug.desc:Ù
     1756قاؚس DSpacePlug يأخذ Ù
     1757جÙ
     1758وعة الوثا؊ق الÙ
     1759صدرة Ù
     1760ن DSpace و يستوردها إلي قرينستون.  # Updated 11-Oct-2007 by kkhalafala
    12591761   
    1260 # -- Missing translation: DSpacePlug.first_inorder_ext
    1261 # -- Missing translation: DSpacePlug.first_inorder_mime
    1262 # -- Missing translation: DSpacePlug.only_first_doc
    1263 
    1264 # -- Missing translation: EMAILPlug.desc
     1762DSpacePlug.first_inorder_ext:يستخدÙ
     1763 Ù‡Ø°Ø§ لتعريف الرافد الإؚتدا؊ي لوثا؊ق Ù
     1764جÙ
     1765وعة DSpace Ù
     1766ع هذا الخيار، فان الن؞اÙ
     1767
     1768DSpacePlug.first_inorder_mime:íÓÊÎÏã åÐÇ áÊÍÏíÏ ãÔÛá ÇáÈíÇäÇÊ ÇáÃæáí áæËíÞÉ ãÌãæÚÉ DSpace. ãÚ åÐÇ ÇáÎíÇÑ¡ ÓæÝ íÊÚÇãá ÇáäÙÇã ÃäæÇÚ æËÇÆÞ MIME ÈÇáÊÑÊíÈ ááÈÍË Úä ÇáãÔÛá ÇáÃæáí ÇáãÊÇÍ.  # Updated 2-Oct-2007 by usamasa
     1769DSpacePlug.only_first_doc:يستخدÙ
     1770 Ù‡Ø°Ø§ لتعريف الرافد الاؚتدا؊ي لؚيانات Ù
     1771جÙ
     1772وعة وثا؊ق DSpace Ù
     1773ع هذا الخيار، فان الن؞اÙ
     1774 Ø³ÙˆÙ يعاÙ
     1775ل أنواع
     1776
     1777EMAILPlug.desc:Ù
     1778قاؚس mail plug يقرأ Ù
     1779لفات الؚريد الالكتروني.  هذه الÙ
     1780لفات تÙ
     1781ت تسÙ
     1782يتها ؚأعداد ؚسيطة (أي كÙ
     1783ا وردت في Ù
     1784جلدات دليل الؚريد ) أو Ù
     1785ع
    12651786
    12661787EMAILPlug.no_attachments:لا تحف؞ Ù
    12671788لحقات الرسالة.
    12681789
    1269 # -- Missing translation: EMAILPlug.headers
    1270 
    1271 # -- Missing translation: EMAILPlug.split_exp
    1272 
    1273 # -- Missing translation: ExcelPlug.desc
     1790EMAILPlug.headers:خزن ترويسات الؚريد الإلكتروني كـ "ترويسات" واصفات ؚيانات  # Updated 11-Oct-2007 by kkhalafala
     1791
     1792EMAILPlug.split_exp:التعؚيرات الÙ
     1793نت؞Ù
     1794Ø© ؚلغة perl التي تستخدÙ
     1795 Ù„تقسيÙ
     1796 Ù
     1797لفات تحتوي علي العديد Ù
     1798ن الرسا؊ل إلي وثا؊ق فردية.  # Updated 11-Oct-2007 by kkhalafala
     1799
     1800ExcelPlug.desc:Ù
     1801قاؚس لاستيراد Ù
     1802لفات Ù
     1803ايكروسوفت اكسل (95 و 97 إصدارات).  # Updated 11-Oct-2007 by kkhalafala
    12741804
    12751805# -- Missing translation: FOXPlug.desc
     
    12771807# -- Missing translation: GAPlug.desc
    12781808
    1279 # -- Missing translation: GISBasPlug.extract_placenames
    1280 
    1281 # -- Missing translation: GISBasPlug.gazetteer
    1282 
    1283 # -- Missing translation: GISBasPlug.place_list
     1809GISBasPlug.extract_placenames:ÇÓÊÎáÇÕ ÇáÃãÇßä ãä ÇáäÕ æÇáãÌãæÚÉ ßãíÊÇÏÇÊÇ. ÊÊØáÈ ÇãÊÏÇÏ GIS áÈÑäÇãÌ Greenstone.  # Updated 2-Oct-2007 by usamasa
     1810
     1811GISBasPlug.gazetteer:Gazetteer يستخلص أسÙ
     1812اء الأÙ
     1813اكن و تعينها كواصفات ؚيانات. يتطلؚ Ø¥Ù
     1814تداد GIS في قرينستون.  # Updated 11-Oct-2007 by kkhalafala
     1815
     1816GISBasPlug.place_list:ÚäÏ ÇÓÊÎáÇÕ ÇáÃãÇßä¡ Öãä ÞÇÆãÉ ÇáÃãÇßä Ýí ÈÏÇíÉ ÇáæËíÞÉ. æåÐÇ íÍÊÇÌ Åáì ÇãÊÏÇÏ GIS áÈÑäÇãÌ Greenstone.  # Updated 1-Oct-2007 by usamasa
    12841817
    12851818# -- Missing translation: GMLPlug.desc
    12861819
    1287 # -- Missing translation: HBPlug.desc
    1288 
    1289 # -- Missing translation: HTMLPlug.assoc_files
     1820HBPlug.desc:ÇáÈÑäÇãÌ ÇáÐí íÞæã ÈÇáÚãá Úáì ãÌáÏ ßÊÈ ÈÕíÛÉ HTML. æåÐÇ ÇáÈÑäÇãÌ íÓÊÎÏã ãä ÞÈá ãÌãæÚÇÊ ãßÊÈÉ ÇáÅäÓÇäíÇÊ Humanity Library æáÇ íÊÚÇã ãÚ ÇáÑãæÒ ÇáãÏÎáÉ æáÇ ASCII. åÐÇ ÇáÈÑäÇãÌ íÚãí ÃÓÑÚ¡ æáßä äæÏ åäÇ ÊÔÌíÚ ÇáäÇÓ áßí ÊäÔíÁ ãÌãæÚÇÊåã ÈÇÓÊÎÏÇã HBSPlug ÈÏáÇ ãä ;-)\n\nUse HBSPlug ÅÐÇ ÇäÔÃÊ ãÌãæÚÉ ÌÏíÏÉ æ ÃÚÏÏÊ ãáÝÇÊ ãËá ãÌãæÚÇÊ ãßÊÈÉ ÇáÅäÓÇäíÇÊ. HBSPlug íÞÈá ßá ÑãæÒ ÇáÅÏÎÇá æáßä íÊØáÈ Ãä Êßæä ÇáãáÝÇÊ ÇáãÑãÒÉ ÎÇáíÉ ãä ÇáÃÎØÇÁ ãËá Ýí ãÌãæÚÇÊ ãßÊÈÉ ÇáÅäÓÇäíÇÊ  # Updated 26-Sep-2007 by usamasa
     1821
     1822HTMLPlug.assoc_files:التعؚيرات الÙ
     1823نت؞Ù
     1824Ø© لـ Perl لإÙ
     1825تدادات الÙ
     1826لفات التي تلحق ؚوثا؊ق HTML.  # Updated 11-Oct-2007 by kkhalafala
    12901827
    12911828HTMLPlug.desc:يعالج هذا الÙ
     
    12931830لفات النصوص الت؎عؚية
    12941831
    1295 # -- Missing translation: HTMLPlug.description_tags
    1296 
    1297 # -- Missing translation: HTMLPlug.extract_style
    1298 
    1299 # -- Missing translation: HTMLPlug.file_is_url
    1300 
    1301 # -- Missing translation: HTMLPlug.hunt_creator_metadata
     1832HTMLPlug.description_tags:ÊÞÓíã ÇáæËíÞÉ Åáì ÃÞÓÇã ÝÑÚíÉ ÚäÏ ãßÇä ÚáÇãÉ <Section>. ÈíäãÇ ÅÐÇ áä íßæä åäÇß Ãí ÊÃËíÑ áæ ßÊÈ '-keep_head' .  # Updated 2-Oct-2007 by usamasa
     1833
     1834HTMLPlug.extract_style:إستخلاص Ù
     1835علوÙ
     1836ات النص و الاسلوؚ Ù
     1837ن Ù
     1838Ù
     1839يز HTML <head> و حف؞ DocumentHeader كواصفات  # Updated 11-Oct-2007 by kkhalafala
     1840
     1841HTMLPlug.file_is_url:يعين إذا كانت أسÙ
     1842اء الÙ
     1843لفات الÙ
     1844دخلة التي ت؎كل عنوان الÙ
     1845وارد الÙ
     1846حد Ù
     1847صادر وثا؊ق أصلية علي سؚيل الÙ
     1848ثال إذا استخدÙ
     1849ت أداة إنعكاس ويؚ لإستيراد هيكل دليل الإستيراد.  # Updated 8-Oct-2007 by kkhalafala
     1850
     1851HTMLPlug.hunt_creator_metadata:ايجاد اكؚر قدر Ù
     1852Ù
     1853كن Ù
     1854ن واصفات الؚيانات على التأليف ووضعه في حقل'الÙ
     1855ن؎؊'  # Updated 11-Oct-2007 by kkhalafala
    13021856
    13031857HTMLPlug.keep_head:لا تزيح الر؀وس Ù
     
    13111865لفات.
    13121866
    1313 # -- Missing translation: HTMLPlug.no_strip_metadata_html
    1314 
    1315 # -- Missing translation: HTMLPlug.nolinks
     1867HTMLPlug.no_strip_metadata_html:قا؊Ù
     1868Ø© Ù
     1869فصولة ؚفاصلة  # Updated 11-Oct-2007 by kkhalafala
     1870
     1871HTMLPlug.nolinks:لا تؚذل اي Ù
     1872حاولة لÙ
     1873صيدة رواؚط ((وضع هذا العلÙ
     1874 Ù‚د يحسن سرعة ؚناء / استيراد اي قريؚ ولكن الرواؚط داخل ستكون الوثا؊ق Ù
     1875كسوره).  # Updated 11-Oct-2007 by kkhalafala
    13161876
    13171877# -- Missing translation: HTMLPlug.rename_assoc_files
     
    13191879# -- Missing translation: HTMLPlug.sectionalise_using_h_tags
    13201880
    1321 # -- Missing translation: HTMLPlug.title_sub
     1881HTMLPlug.title_sub:إستؚدال التعؚير لتعديل سلسلة نصية Ù
     1882خزنة كعنوان. تستخدÙ
     1883 Ø¹Ù„ÙŠ سؚيل الÙ
     1884ثال، ؚواسطة  PDFPlug لإزاحة "صفحة 1" الخ Ù
     1885ن نص
     1886
     1887HTMLPlug.tidy_html:إذا تÙ
     1888 ØªØ¹ÙŠÙ†Ù‡Ø§ØŒØªÙ‚ÙˆÙ
     1889 ØšØªØ­ÙˆÙŠÙ„ وثيقة HTML إلي هي؊ة XHTML جيدة الإعداد. تÙ
     1890كن الÙ
     1891ستفيدين Ù
     1892ن عرض الوثيقة في هي؊ة كتاؚ  # Updated 8-Oct-2007 by kkhalafala
     1893
     1894HTMLPlug.old_style_HDL:لتحديد Ù
     1895ا إذا كان الÙ
     1896لف في هذه الÙ
     1897جÙ
     1898وعة Ù
     1899قسÙ
     1900 ØšØ¥Ø³ØªØ®Ø¯Ø§Ù
     1901 Ø§Ø³Ù„وؚ قسÙ
     1902 HDL القديÙ
     1903.  # Updated 11-Oct-2007 by kkhalafala
    13221904
    13231905ImagePlug.converttotype:تحويل الصورة الأساسية الي هي؊ة 's'.
     
    13311913# -- Missing translation: ImagePlug.noscaleup
    13321914
    1333 # -- Missing translation: ImagePlug.screenviewsize
     1915ImagePlug.screenviewsize:إذا تÙ
     1916 Ø§Ù„تعين،يجعل صورة ؚحجÙ
     1917 n ل؎ا؎ة العرض ويعين واصفات ؚيانات ال؎ا؎ة ، حجÙ
     1918 Ø§Ù„؎ا؎ة ، عرض ال؎ا؎ة و إرتفاع ال؎ا؎ة.
    13341919
    13351920# -- Missing translation: ImagePlug.screenviewtype
    13361921
    1337 # -- Missing translation: ImagePlug.thumbnailsize
    1338 
    1339 # -- Missing translation: ImagePlug.thumbnailtype
     1922ImagePlug.thumbnailsize:إن؎اء Ù
     1923ختصر صورة ؚحجÙ
     1924 nxn.  # Updated 11-Oct-2007 by kkhalafala
     1925
     1926ImagePlug.thumbnailtype:إن؎اء Ù
     1927ختصر صورة في هي؊ة 's'.  # Updated 7-Oct-2007 by kkhalafala
    13401928
    13411929# -- Missing translation: IndexPlug.desc
     
    13691957عالجة وثا؊ق LaTeX .
    13701958
     1959LOMPlug.desc:Ù
     1960قاؚس لإستيراد Ù
     1961لفات LOM (واصفات ؚيانات كيانات التعلÙ
     1962) .  # Updated 11-Oct-2007 by kkhalafala
     1963
     1964LOMPlug.root_tag:DocType لÙ
     1965لفات XML  (أو تعؚير Ù
     1966نت؞Ù
     1967 ÙŠØªØ·Ø§ØšÙ‚ Ù
     1968ع جذر العنصر).  # Updated 11-Oct-2007 by kkhalafala
     1969# -- Missing translation: LOMPlug.check_timestamp
     1970LOMPlug.download_srcdocs:تنزيل Ù
     1971صدر الوثيقة إذا تÙ
     1972 ØªØ­Ø¯ÙŠØ¯ واحد (in general^identifier^entry or
     1973
    13711974MARCPlug.desc:Ù
    13721975قاؚس Ù
    13731976ارك اساسي.
    13741977
    1375 # -- Missing translation: MARCPlug.metadata_mapping
    1376 
    1377 # -- Missing translation: XMLMARCPlug.desc
    1378 
    1379 # -- Missing translation: XMLMARCPlug.metadata_mapping_file
     1978MARCPlug.metadata_mapping:اسÙ
     1979 Ø§Ù„Ù
     1980لف الذي يضÙ
     1981 ØªÙØ§ØµÙŠÙ„ الخرا؊ط لقيÙ
     1982 Ù
     1983ارك الي أسÙ
     1984اء واصفات ؚيانات في
     1985
     1986MARCXMLPlug.desc:MARCXML plugin.  # Updated 21-Sep-2007 by usamasa
     1987
     1988# -- Missing translation: MARCXMLPlug.metadata_mapping_file
     1989
     1990# -- Missing translation: MediaWikiPlug.desc
     1991
     1992# -- Missing translation: MediaWikiPlug.show_toc
     1993
     1994MediaWikiPlug.delete_toc:حذف قسÙ
     1995 'جدول الÙ
     1996حتويات' في كل صفحة HTML . تحتاج لتحديد تعؚير Ù
     1997نت؞Ù
     1998  لـ Perl في toc_exp أدناه
     1999
     2000MediaWikiPlug.toc_exp:تعؚير Ù
     2001نت؞Ù
     2002 Ù„Ù€ Perl لÙ
     2003طاؚقة 'جدول الÙ
     2004حتويات'. القيÙ
     2005Ø© الإفتراضية تطاؚق صفحات الويؚ العاÙ
     2006Ø©
     2007
     2008MediaWikiPlug.delete_nav:حذف قسÙ
     2009 Ø§Ù„تجوال . تحتاج لتحديد تعؚير Ù
     2010نت؞Ù
     2011 Ù„Ù€ Perl في nav_div_exp ادناه.  # Updated 11-Oct-2007 by kkhalafala
     2012
     2013MediaWikiPlug.nav_div_exp:تعؚير Ù
     2014نت؞Ù
     2015 Ù„Ù€ Perl لÙ
     2016طاؚقة قسÙ
     2017 Ø§Ù„تجوال. القيÙ
     2018Ø© الإفتراضية تطاؚق صفحات الويؚ العاÙ
     2019Ø© MediaWikiلـ  # Updated 11-Oct-2007 by kkhalafala
     2020
     2021MediaWikiPlug.delete_searchbox:ÇÍÐÝ ÇáÞÓã ÇáÎÇÕ ÈãÑÈÚ ÇáÈÍË. íÍÊÇÌ Åáì ÊÍÏíÏ ÈÑãÌÉ Perl Ýí searchbox_div_exp ÈÃÓÝá.  # Updated 1-Oct-2007 by usamasa
     2022
     2023MediaWikiPlug.searchbox_div_id:ÊÚÈíÑ áÛÉ Perl ãÚÑæÝ áßí íÖÇåí ãÑÈÚ ÇáÈÍË. ÇáÞíãÉ ÇáÊáÞÇÆíÉ ÊÖÇåí ÕÝÍÇÊ MediaWiki ÇáãÚÊÇÏÉ.  # Updated 21-Sep-2007 by usamasa
     2024
     2025# -- Missing translation: MediaWikiPlug.remove_title_suffix_exp
    13802026
    13812027# -- Missing translation: MetadataCSVPlug.desc
    13822028
    1383 # -- Missing translation: MetadataPass.desc
    1384 
    1385 # -- Missing translation: METSPlug.desc
    1386 
    1387 # -- Missing translation: GISBasPlug.desc
    1388 
    1389 # -- Missing translation: NULPlug.desc
    1390 
    1391 # -- Missing translation: NULPlug.assoc_field
     2029MetadataPass.desc:ؚجانؚ الف؊ة الأساس لـ BasPlug الذي يدعÙ
     2030 Ø¥Ø³ØªØ®Ø¯Ø§Ù
     2031 Ù
     2032قاؚس واصفات الؚيانات لتÙ
     2033رير metadata_read في
     2034
     2035METSPlug.desc:Ù
     2036عالجة وثا؊ق METS ؚاسلوؚ قرينستون.  # Updated 11-Oct-2007 by kkhalafala
     2037
     2038GISBasPlug.desc:ؚجانؚ الف؊ة الأساس BasPlug الذي يدعÙ
     2039 Ù‚درات GIS  # Updated 11-Oct-2007 by kkhalafala
     2040
     2041NULPlug.desc:Ù
     2042قاؚس Ù
     2043لف (.nul) الوهÙ
     2044ي. يستخدÙ
     2045 Ù
     2046ع الÙ
     2047لفات التي تنتج ؚتÙ
     2048ديد Ù
     2049لفات واصفات ؚيانات قاعدة ؚيانات.  # Updated 11-Oct-2007 by kkhalafala
     2050
     2051NULPlug.assoc_field:إسÙ
     2052 Ø­Ù‚Ù„ واصفات الؚيانات و الذي سوف يتÙ
     2053 ØªØ®ØµÙŠØµØ© لÙ
     2054لف nul  # Updated 11-Oct-2007 by kkhalafala
     2055NULPlug.add_metadata_as_text:ضع جدول للÙ
     2056يتاداتا في نص الوثيقة، إلا إذا كانت هذه الوثيقة ليست نصية.  # Updated 2-Oct-2007 by usamasa
     2057
     2058# -- Missing translation: NULPlug.remove_namespace_for_text
     2059
    13922060OAIPlug.desc:الÙ
    13932061قاؚس الأساسي لÙ
     
    13952063فتوح (OAI) .
    13962064
    1397 # -- Missing translation: OggVorbisPlug.add_technical_metadata
    1398 
    1399 # -- Missing translation: OggVorbisPlug.desc
    1400 
    1401 # -- Missing translation: OpenDocumentPlug.desc
    1402 
    1403 # -- Missing translation: PagedImgPlug.desc
     2065OggVorbisPlug.add_technical_metadata:إضافة واصفات ؚيانات فنية (علي سؚيل الÙ
     2066ثال (eg. bitrate)  # Updated 7-Oct-2007 by kkhalafala
     2067
     2068OggVorbisPlug.desc:ÈÑäÇãÌ áÊÕÏíÑ ãáÝÇÊ ÇáÕæÊ ãä äæÚ Ogg Vorbis.  # Updated 26-Sep-2007 by usamasa
     2069
     2070OpenDocumentPlug.desc:Ù
     2071قاؚس لوثا؊ق في هي؊ة OASIS OpenDocument (تستخدÙ
     2072 ÙÙŠ OpenOffice 2.0)  # Updated 11-Oct-2007 by kkhalafala
     2073
     2074PagedImgPlug.desc:الؚرناÙ
     2075ج الÙ
     2076ساعد للحصول على وثا؊ق تتكون Ù
     2077ن سلسلة Ù
     2078ن الصور ، Ù
     2079ع رÙ
     2080وز النص الاختياري لكل صورة. هذا الؚرناÙ
     2081ج الÙ
     2082ساعد العÙ
     2083ليات.
    14042084
    14052085# -- Missing translation: PagedImgPlug.documenttype
    14062086# -- Missing translation: PagedImgPlug.documenttype.paged
    1407 # -- Missing translation: PagedImgPlug.documenttype.hierarchy
    1408 
    1409 # -- Missing translation: PagedImgPlug.headerpage
     2087PagedImgPlug.documenttype.hierarchy:الوثا؊ق الهرÙ
     2088ية تتضÙ
     2089ن قا؊Ù
     2090Ø© Ù
     2091حتويات.  # Updated 11-Oct-2007 by kkhalafala
     2092
     2093PagedImgPlug.headerpage:اضف هرÙ
     2094 ØªØ±Ùˆ يسه الصفحة (التي لا تحتوي على صورة) لكل وثيقة.  # Updated 11-Oct-2007 by kkhalafala
    14102095
    14112096# -- Missing translation: PagedImgPlug.screenview
     
    14132098# -- Missing translation: PagedImgPlug.screenviewsize
    14142099
    1415 # -- Missing translation: PagedImgPlug.screenviewtype
    1416 
    1417 # -- Missing translation: PagedImgPlug.thumbnail
    1418 
    1419 # -- Missing translation: PDFPlug.allowimagesonly
    1420 # -- Missing translation: PDFPlug.complex
    1421 
    1422 # -- Missing translation: PDFPlug.desc
    1423 
    1424 # -- Missing translation: PDFPlug.nohidden
    1425 
    1426 # -- Missing translation: PDFPlug.noimages
    1427 
    1428 # -- Missing translation: PDFPlug.use_sections
     2100PagedImgPlug.screenviewtype:'ÇÓÊÎÏÇã ÕæÑÉ ÇáÔÇÔÉ Ýí ÇáÊäÓíÞ '.  # Updated 21-Sep-2007 by usamasa
     2101
     2102PagedImgPlug.thumbnail:إن؎اء Ù
     2103ختصر صورة لكل صورة  # Updated 11-Oct-2007 by kkhalafala
     2104
     2105PDFPlug.allowimagesonly:ÇÓãÍ ááãáÝÇÊ ãä äæÚ PDF. ÊÌäÈ ÇáÍÇÌÉ Åáì Ãä Êßæä ãÌãæÚÉ ãÚÞÏÉ. ÝÞØ useful with convert_to html .  # Updated 26-Sep-2007 by usamasa
     2106PDFPlug.complex:إن؎اء ناتج أكثر تعقيدا. Ù
     2107ع هذا الخيار حدد ناتج html سيؚدو أكثر ؎ؚها لÙ
     2108لف PDF الأصلي. لكي يعÙ
     2109ل هذا ؚ؎كل صحيح يجؚ تثؚيت
     2110
     2111PDFPlug.desc:الÙ
     2112قاؚس الذي يعالج وثا؊ق PDF .  # Updated 11-Oct-2007 by kkhalafala
     2113
     2114PDFPlug.nohidden:تÙ
     2115نع  pdftohtml Ù
     2116ن Ù
     2117حاولة إستخلاص نص Ù
     2118خفي.هذا يفيد فقط في حالة تعين خيار -complex .  # Updated 11-Oct-2007 by kkhalafala
     2119
     2120PDFPlug.noimages:áÇ ÊÍÇæá Ãä ÊÓÊÎáÕ ÇáÕæÑ ãä ãáÝÇÊ PDF.  # Updated 2-Oct-2007 by usamasa
     2121
     2122PDFPlug.use_sections:إن؎اء قسÙ
     2123 Ù
     2124نفصل لآي صفحة Ù
     2125ن Ù
     2126لف PDF .  # Updated 8-Oct-2007 by kkhalafala
    14292127
    14302128# -- Missing translation: PDFPlug.zoom
     
    14352133ايكروسوفت ؚاور ؚوينت.
    14362134
    1437 # -- Missing translation: PPTPlug.windows_scripting
    1438 
    1439 # -- Missing translation: ProCitePlug.desc
    1440 
    1441 # -- Missing translation: PSPlug.desc
     2135PPTPlug.windows_scripting:استخدÙ
     2136  MicroSoft Windows scripting technology (Visual Basic تطؚيقات) لإيجاد PPT و تحويل الوثيقة الي Ù
     2137ختلف هي؊ات الصور (علي سؚيل الÙ
     2138ثال JPEG,PNG,GIF) ؚدلا Ù
     2139ن التعويل علي الحزÙ
     2140Ø© الÙ
     2141فتوحة الÙ
     2142صدر
     2143
     2144ProCitePlug.desc:Ù
     2145قاؚس لـ (Ù
     2146صدرة) ProCite قواعد ؚيانات  # Updated 11-Oct-2007 by kkhalafala
     2147
     2148PSPlug.desc:هذا هو Ù
     2149حول نص\ "الرجل الفقير \" Ù
     2150نps. اذا كنت جادة ، الن؞ر في استخداÙ
     2151 Ø­Ø²Ù
     2152Ø© الأÙ
     2153ر الرسÙ
     2154ي ، وهو Ù
     2155تاح للتحÙ
     2156يل في
    14422157
    14432158PSPlug.extract_date:إستخلاص التاريخ Ù
     
    14552170لفات Real Media .
    14562171
    1457 # -- Missing translation: RecPlug.desc
    1458 
    1459 # -- Missing translation: RecPlug.recheck_directories
    1460 
    1461 # -- Missing translation: RecPlug.use_metadata_files
    1462 
    1463 # -- Missing translation: ReferPlug.desc
    1464 
    1465 # -- Missing translation: ReferPlug.longdesc
    1466 
    1467 # -- Missing translation: RogPlug.desc
    1468 
    1469 # -- Missing translation: RTFPlug.desc
    1470 
    1471 # -- Missing translation: SRCPlug.desc
    1472 
    1473 # -- Missing translation: SRCPlug.remove_prefix
    1474 
    1475 # -- Missing translation: SplitPlug.desc
    1476 
    1477 # -- Missing translation: SplitPlug.split_exp
     2172RecPlug.desc:و Ù
     2173قاؚس يعود الي كل الأدلة Ù
     2174عالجا كل الÙ
     2175لفات التي يجدها  # Updated 8-Oct-2007 by kkhalafala
     2176
     2177RecPlug.recheck_directories:ؚعد Ù
     2178عالجة Ù
     2179لفات في دليل إستيراد، أعد قراءة الدليل لفحص أي Ù
     2180لفات جديدة أن؎؊ت  # Updated 11-Oct-2007 by kkhalafala
     2181
     2182RecPlug.use_metadata_files:قراءة واصفات الؚيانات Ù
     2183ن Ù
     2184لفات واصفات ؚيانات xml(Ù
     2185ستنكر - metadataxmlplug (الي قا؊Ù
     2186Ø© الÙ
     2187قاؚس ؚدلا  # Updated 11-Oct-2007 by kkhalafala
     2188
     2189ReferPlug.desc:ReferPlug يقراء الÙ
     2190لفات الؚيؚليوجرافية في هي؊ة Refer  # Updated 11-Oct-2007 by kkhalafala
     2191
     2192ReferPlug.longdesc:ReferPlug يقراء الÙ
     2193لفات الؚيؚليوجرافية في هي؊ة Refer.\nؚواسطة Gordon W. Paynter
     2194
     2195RogPlug.desc:ين؎؊ وثا؊ق Ù
     2196ستوي واحد ؚسيط Ù
     2197ن Ù
     2198لفات .rog أو .mdb .  # Updated 11-Oct-2007 by kkhalafala
     2199
     2200RTFPlug.desc:Ù
     2201قاؚس لإستيراد Ù
     2202لفات rtf.  # Updated 11-Oct-2007 by kkhalafala
     2203
     2204SRCPlug.desc:إسÙ
     2205 Ù
     2206لف يستخدÙ
     2207 Ø­Ø§Ù„يا لعنوان ( إختياريا ينقص ؚعض الؚادءه). اللغات الحالية:\nنص: READMEs/Makefiles\nC/C++   (حاليا يستخرج #يتضÙ
     2208ن حالة و C++ class decls)\nPerl    (حاليا فقط تنجز كنص)\nShell   (حاليا فقط تنجز كنص)
     2209
     2210SRCPlug.remove_prefix:حذف هذا النÙ
     2211Ø· الريادي Ù
     2212ن إسÙ
     2213 Ù
     2214لف (علي سؚيل الÙ
     2215ثال -remove_prefix /tmp/XX/src/). القيÙ
     2216Ø© الإفتراضية هي حذف كل الÙ
     2217سار Ù
     2218ن إسÙ
     2219 Ø§Ù„Ù
     2220لف.  # Updated 8-Oct-2007 by kkhalafala
     2221
     2222SplitPlug.desc:يستخدÙ
     2223 Ù
     2224قاؚس SplitPlug لتقسيÙ
     2225 Ø§Ù„Ù
     2226لفات الÙ
     2227دخلة الي قطاعات تعلج ؚصورة فردية. يجؚ ان لا يستدعي  هذا الÙ
     2228قاؚس ؚصورة Ù
     2229نفردة ، ؚدلا ، إذا
     2230
     2231SplitPlug.split_exp:تعؚير Ù
     2232نت؞Ù
     2233 Ù„Ù€ perl لتقسيÙ
     2234 Ø§Ù„Ù
     2235لفات الÙ
     2236دخلة الي قطاعات.  # Updated 11-Oct-2007 by kkhalafala
    14782237
    14792238# -- Missing translation: StructuredHTMLPlug.desc
    14802239
    1481 # -- Missing translation: StructuredHTMLPlug.delete_toc
     2240StructuredHTMLPlug.delete_toc:حذف أي جدول Ù
     2241حتويات ، قا؊Ù
     2242Ø© أ؎كال الخ Ù
     2243ن Ù
     2244لف HTML الÙ
     2245حول. تحدد الأساليؚ لهذا الإجراء في خيار  # Updated 11-Oct-2007 by kkhalafala
    14822246
    14832247# -- Missing translation: StructuredHTMLPlug.title_header
    14842248
    1485 # -- Missing translation: StructuredHTMLPlug.level1_header
    1486 
    1487 # -- Missing translation: StructuredHTMLPlug.level2_header
    1488 
    1489 # -- Missing translation: StructuredHTMLPlug.level3_header
     2249StructuredHTMLPlug.level1_header:يÙ
     2250كن للÙ
     2251ستخدÙ
     2252 ØªØ­Ø¯ÙŠØ¯ أساليؚ ترويسة الÙ
     2253ستوي الأول لوثيقة HTML (Ù
     2254ساوي لـ <h1>).  # Updated 11-Oct-2007 by kkhalafala
     2255
     2256StructuredHTMLPlug.level2_header:يÙ
     2257كن للÙ
     2258ستخدÙ
     2259 ØªØ­Ø¯ÙŠØ¯ أساليؚ ترويسة الÙ
     2260ستوي الثاني لوثيقة HTML (Ù
     2261ساوي لـ <h2>).  # Updated 11-Oct-2007 by kkhalafala
     2262
     2263StructuredHTMLPlug.level3_header:يÙ
     2264كن للÙ
     2265ستخدÙ
     2266 ØªØ­Ø¯ÙŠØ¯ أساليؚ ترويسة الÙ
     2267ستوي الثالث لوثيقة HTML (Ù
     2268ساوي لـ <h3>).  # Updated 11-Oct-2007 by kkhalafala
    14902269
    14912270# -- Missing translation: StructuredHTMLPlug.toc_header
    14922271
    1493 # -- Missing translation: TEXTPlug.desc
    1494 
    1495 # -- Missing translation: TEXTPlug.title_sub
    1496 
    1497 # -- Missing translation: UnknownPlug.assoc_field
    1498 
    1499 # -- Missing translation: UnknownPlug.desc
     2272TEXTPlug.desc:íäÔíÁ æËíÞÉ ÈÓíØÉ ãä ãÓÊæì æÇÍÏ. íÖíÝ ÍÞá ãíÊÇÏÇÊÇ ÎÇÕ ÈÇáÚäæÇä Ýí Ãæá ÓØÑ ãä ÇáäÕ (ÈØæá 100 ÍÑÝ ÈÍÏ ÃÞÕì).  # Updated 1-Oct-2007 by usamasa
     2273
     2274TEXTPlug.title_sub:إستؚدال التعؚير لتعديل سلسلة نصية Ù
     2275خزنة كعنوان. تستخدÙ
     2276 Ø¹Ù„ÙŠ سؚيل الÙ
     2277ثال، ؚواسطة  PSPlug لإزاحة "صفحة 1"
     2278
     2279UnknownPlug.assoc_field:ÇÓã ÍÞá ãíÊÇÏÇÊÇ ÇáÐí ÓíÍãá ÇÓã ÇáãáÝÇÊ ÇáãÑÊÈØÉ.  # Updated 26-Sep-2007 by usamasa
     2280
     2281UnknownPlug.desc:هذا Ù
     2282قاؚس ؚسيط لإستيراد Ù
     2283لفات في هي؊ات لا يعرف قرينستون عنها ؎ي؊ا..  يتÙ
     2284 Ø¥Ù†ØŽØ§Ø¡ وثيقة خيالية لكل Ù
     2285لف، و سوف يتÙ
     2286 ØªÙ
     2287رير الÙ
     2288لف الي قرينستون كـ  \"associated file\" للوثيقة.  # Updated 11-Oct-2007 by kkhalafala
    15002289
    15012290UnknownPlug.file_format:نوع الÙ
    15022291لف (e.g. MPEG, MIDI, ...)
    15032292
    1504 # -- Missing translation: UnknownPlug.mime_type
    1505 
    1506 # -- Missing translation: UnknownPlug.process_extension
    1507 
    1508 # -- Missing translation: UnknownPlug.srcicon
     2293UnknownPlug.mime_type:نوع الÙ
     2294لف (علي سؚيل الÙ
     2295ثال image/gif).  # Updated 7-Oct-2007 by kkhalafala
     2296
     2297UnknownPlug.process_extension:Ù
     2298عالجة Ù
     2299لفات ؚنفس اÙ
     2300تداد هذا الÙ
     2301لف . هذا الخيار يعتؚر ؚديلا لـ  process_exp الذي هو اسهل عندالإستخداÙ
     2302 Ùˆ لكن أقل Ù
     2303رونة.  # Updated 11-Oct-2007 by kkhalafala
     2304
     2305UnknownPlug.srcicon:ÍÏÏ ÇÓã ãÇßÑæ (ÈÏæä ÔÑØÉ ÓÝáíÉ) áÊÓÊÎÏãåÇ ãÚ ÇáãíÊÇÏÇÊÇ ÇáãÍÏÏÉ.  # Updated 26-Sep-2007 by usamasa
    15092306
    15102307MP3Plug.desc:Ù
     
    15132310لفات MP3 .
    15142311
    1515 # -- Missing translation: MP3Plug.assoc_images
    1516 
    1517 # -- Missing translation: MP3Plug.applet_metadata
    1518 
    1519 # -- Missing translation: MP3Plug.metadata_fields
    1520 
    1521 # -- Missing translation: W3ImgPlug.aggressiveness
    1522 # -- Missing translation: W3ImgPlug.aggressiveness.1
     2312MP3Plug.assoc_images:ØšÙ
     2313حدد عنوان ID3 و واصفات ؚيانات الÙ
     2314؀ديMP3 استخدÙ
     2315 Ù
     2316حرك الؚحث جوجل للصور لتحديد الصور الÙ
     2317رتؚطة Ù
     2318ع Ù
     2319لف  # Updated 11-Oct-2007 by kkhalafala
     2320
     2321MP3Plug.applet_metadata:[applet] لتخزين واصفات ؚيانات لكل وثيقة تحتوي علي قدر Ù
     2322طلوؚ Ù
     2323ن HTML لت؎غيل ؚرناÙ
     2324ج  # Updated 11-Oct-2007 by kkhalafala
     2325
     2326MP3Plug.metadata_fields:ÞÇÆãÉÈÍÞæá ÇáãíÊÇÏÇÊÇ ãÝÕæáÉ ÈÚáÇãÉ ÝÇÕáÉ (¡). ÇÓÊÎÏã "\*"\ áÇÓÊÑÌÇÚ ßÇÝÉ ÇáÍÞæá.  # Updated 26-Sep-2007 by usamasa
     2327
     2328W3ImgPlug.aggressiveness:Ù
     2329دي تقنيات إستخلاص النص للإستخداÙ
     2330.  # Updated 8-Oct-2007 by kkhalafala
     2331W3ImgPlug.aggressiveness.1:إسÙ
     2332 Ù
     2333لف, Ù
     2334سار, ALT نص فقط.  # Updated 11-Oct-2007 by kkhalafala
    15232335# -- Missing translation: W3ImgPlug.aggressiveness.2
    1524 # -- Missing translation: W3ImgPlug.aggressiveness.3
    1525 # -- Missing translation: W3ImgPlug.aggressiveness.4
    1526 # -- Missing translation: W3ImgPlug.aggressiveness.5
    1527 # -- Missing translation: W3ImgPlug.aggressiveness.6
     2336W3ImgPlug.aggressiveness.3:كل ال  2, زا؊دا ؚالقرؚ Ù
     2337ن الفقرات حيث توفرت.  # Updated 7-Oct-2007 by kkhalafala
     2338W3ImgPlug.aggressiveness.4:كل ال  3, زا؊دا الترويسات الساؚقة (<h1>, <h2>...) حيث توفرت.  # Updated 11-Oct-2007 by kkhalafala
     2339W3ImgPlug.aggressiveness.5:كل ال  4, زا؊دا الÙ
     2340راجع النصية حيث توفرت.  # Updated 11-Oct-2007 by kkhalafala
     2341W3ImgPlug.aggressiveness.6:كل ال  4, زا؊دا الÙ
     2342راجع النصية حيث توفرت.  # Updated 11-Oct-2007 by kkhalafala
    15282343# -- Missing translation: W3ImgPlug.aggressiveness.7
    1529 # -- Missing translation: W3ImgPlug.aggressiveness.8
    1530 # -- Missing translation: W3ImgPlug.aggressiveness.9
     2344W3ImgPlug.aggressiveness.8:ßá ÇáÓÈÚÉ¡ ÈÇáÅÖÇÝÉ Åáì ÊßÑÇÑ ÇáÇÞÊÈÇÓ¡ æÇÓã ÇáãáÝ¡ æ ÅáÎ (ÅÈÑÇÒ ÇáäÊÇÆÌ ÇáÃßËÑ ÇÑÊÈÇØÇð).  # Updated 2-Oct-2007 by usamasa
     2345W3ImgPlug.aggressiveness.9:كل ال  1, زا؊دا النص الكاÙ
     2346ل لÙ
     2347صدر الصفحة.  # Updated 11-Oct-2007 by kkhalafala
    15312348
    15322349# -- Missing translation: W3ImgPlug.caption_length
    15332350
    1534 # -- Missing translation: W3ImgPlug.convert_params
    1535 
    1536 # -- Missing translation: W3ImgPlug.desc
    1537 
    1538 # -- Missing translation: W3ImgPlug.document_text
     2351W3ImgPlug.convert_params:Ù
     2352؀؎رات إضافية لÙ
     2353حول ImageMagicK في إن؎اء Ù
     2354ختصر صورة ، Ù
     2355ثال , '-raise' سوف يعطي تأثير ثلاثي الأؚعاد الي Ù
     2356ختصرات الصور.  # Updated 11-Oct-2007 by kkhalafala
     2357
     2358W3ImgPlug.desc:ÈÑäÇãÌ áÇÓÊÎáÇÕ ÇáÕæÑ æÑÈØ ÇáäÕæÕ ãä ÕÝÍÇÊ ÇáÅäÊÑäÊ.  # Updated 26-Sep-2007 by usamasa
     2359
     2360W3ImgPlug.document_text:إضافة نص صورة كـ وثيقة: نص (خلاف ذلك حقل واصفات ؚياناتindexedtext ).  # Updated 11-Oct-2007 by kkhalafala
    15392361
    15402362# -- Missing translation: W3ImgPlug.index_pages
    15412363
    1542 # -- Missing translation: W3ImgPlug.max_near_text
    1543 
    1544 # -- Missing translation: W3ImgPlug.min_height
    1545 
    1546 # -- Missing translation: W3ImgPlug.min_near_text
     2364W3ImgPlug.max_near_text:العدد الأقصي لÙ
     2365حارف قرؚ صور للإستخلاص  # Updated 11-Oct-2007 by kkhalafala
     2366
     2367W3ImgPlug.min_height:Pixels. ÊÎá Úä ÇáÕæÑ ÇáÃÞá ãä åÐÇ  # Updated 1-Oct-2007 by usamasa
     2368
     2369W3ImgPlug.min_near_text:العدد الأدني لÙ
     2370حارف قرؚ نص أو لقطة للإستخلاص  # Updated 11-Oct-2007 by kkhalafala
    15472371
    15482372W3ImgPlug.min_size:ؚايتس. تجاوز الصور التي هي أصغر Ù
     
    15522376ن هذا.
    15532377
    1554 # -- Missing translation: W3ImgPlug.neartext_length
    1555 
    1556 # -- Missing translation: W3ImgPlug.no_cache_images
    1557 
    1558 # -- Missing translation: W3ImgPlug.smallpage_threshold
    1559 
    1560 # -- Missing translation: W3ImgPlug.textrefs_threshold
    1561 
    1562 # -- Missing translation: W3ImgPlug.thumb_size
     2378W3ImgPlug.neartext_length:الطول الهدف لأقرؚ نص (Ù
     2379حارف).  # Updated 7-Oct-2007 by kkhalafala
     2380
     2381W3ImgPlug.no_cache_images:لا تخؚ؊ الصور (أ؎ر الي عنوان الÙ
     2382وارد الÙ
     2383وحد الأصلي).  # Updated 7-Oct-2007 by kkhalafala
     2384
     2385W3ImgPlug.smallpage_threshold:ÇáÕæÑ ÇáÊí Ýí ÇáÕÝÍÇÊ ÃÕÛÑ ãä åÐå ÈÇáÜ(bytes)¡ ÓæÝ ÊÍÊæí ÇáÕÝÍÉ Úáì ÅÖÇÝÉ ãíÊÇÏÇÊÇ áßá ãä (ÇáÚäæÇä - ÇáßáãÇÊ ÇáãÝÊÇÍíÉ - ... ÅáÎ)  # Updated 21-Sep-2007 by usamasa
     2386
     2387W3ImgPlug.textrefs_threshold:ؚداية للإ؎ارات النصية .القيÙ
     2388 Ø§Ù„أقل تعني ان الخوارزÙ
     2389ية أقل صراÙ
     2390Ø©  # Updated 7-Oct-2007 by kkhalafala
     2391
     2392W3ImgPlug.thumb_size:أقصي حجÙ
     2393 Ù„Ù
     2394ختصر صورة . كل Ù
     2395ن العرض و الإرتفاع.  # Updated 11-Oct-2007 by kkhalafala
    15632396
    15642397# -- Missing translation: WordPlug.desc
    15652398
    1566 # -- Missing translation: WordPlug.windows_scripting
    1567 
    1568 # -- Missing translation: WordPlug.metadata_fields
     2399WordPlug.windows_scripting:استخدÙ
     2400  MicroSoft Windows scripting technology (Visual
     2401
     2402WordPlug.metadata_fields:áÇÓÊÑÌÇÚ ÇáãíÊÇÏÇÊÇ ãä æËíÞÉ HTML ãÍæáÉ ÈÈÑäÇãÌ VB scripting. ÊÓãÍ ááãÓÊÎÏã ÈÊÚÑíÝ ÞÇÆãÉ ÍÞæá ÇáãíÊÇÏÇÊÇ ÇáãÝÕæáÉ ÈÝÇÕáÉ áãÍÇæáÉ ÇÓÊÎáÇÕåÇ. ÇÓÊÎÏã 'tag<tagname>' ááãÍÊæì ÇáÎÇÕ ÈÃæá <tagname>.  # Updated 10-Oct-2007 by usamasa
    15692403
    15702404# -- Missing translation: XMLPlug.desc
    15712405
    1572 # -- Missing translation: XMLPlug.xslt
    1573 # -- Missing translation: ZIPPlug.desc
     2406XMLPlug.xslt:تحويل الثيقة الÙ
     2407دخلة الÙ
     2408تطاؚقة Ù
     2409ع XSLT في الÙ
     2410لف الÙ
     2411سÙ
     2412ي .اسÙ
     2413 Ù
     2414لف نسؚي يفترض ان يكون في Ù
     2415جال Ù
     2416لف الÙ
     2417جÙ
     2418وعة ، علي سؚيل الÙ
     2419ثال
     2420ZIPPlug.desc:ÇáÈÑäÇãÌ ÇáÐí íÊÚÇãá ãÚ ÇáãÏÎáÇÊ ÇáãÖÛæØÉ Ãæ ÇáãÄÑÔÝÉ íÞæã ÍÇáíÇ ÈÇáÊÚÇãá ãÚ ÇáÇãÊÏÇÏÇÊ :\ngzip (.gz, .z, .tgz, .taz)\nbzip (.bz)\nbzip2 (.bz2)\nzip (.zip .jar)\ntar (.tar)\n\n æåÐÇ ÇáÈÑäÇãÌ íÚÊãÏ Úáì ÇáãÑÇÝÞ ÇáÊÇáíÉ (Ýí ÍÇáÉ ãÍÇæáÉ ÊÔÛíá äÙÇã ÇáÑÏ): \ngunzip (áÜgzip)\nbunzip (áÜbzip)\nbunzip2 \nunzip (áÜzip)\ntar (áÜtar)  # Updated 10-Oct-2007 by usamasa
    15742421
    15752422#
     
    15792426BasDownload.desc:الف؊ة الأساسية لنÙ
    15802427اذج التنزيل
     2428
     2429MediaWikiDownload.desc:ÈÑÇäÇãÌ ÝÑÚí ááÊÍãíá ãä ãæÇÞÚ MediaWiki  # Updated 21-Sep-2007 by usamasa
     2430MediaWikiDownload.reject_filetype:ÊÌÇåá ÞÇÆãÉ url¡ ÇÝÕá ÈÝÇÕáÉ (¡)¡ Úáì ÓÈíá ÇáãËÇá: *cgi-bin*,*.ppt ÊÚäí ÊÌÇåá ÇáÑæÇÈØ ÇáÊí ÊÍÊæí Úáì ßá ãä 'cgi-bin' Ãæ '.ppt'.  # Updated 2-Oct-2007 by usamasa
     2431MediaWikiDownload.reject_filetype_disp:ÊÌÇåá ÚäæÇä URL¡ ãÝÕæáÉ ÈÚáÇãÉ ÝÇÕáÉ  # Updated 21-Sep-2007 by usamasa
     2432MediaWikiDownload.exclude_directories:قا؊Ù
     2433Ø© الأدلة الÙ
     2434ستؚعدة(Ù
     2435سارات لأدلة Ù
     2436نتهية)، على سؚيل الÙ
     2437ثال: /peopleو /documentation سوف تستؚعد كل Ù
     2438ن الأدلة 'people'و 'documentation' تحت الÙ
     2439وقع الحالي.  # Updated 2-Oct-2007 by usamasa
     2440MediaWikiDownload.exclude_directories_disp:قا؊Ù
     2441Ø© يالأدلة الÙ
     2442ستؚعدة ،Ù
     2443فصولة ؚفاصلة  # Updated 11-Oct-2007 by kkhalafala
    15812444
    15822445OAIDownload.desc:نÙ
     
    16612524لفات النصوص الت؎عؚية فقط
    16622525
    1663 # -- Missing translation: WgetDownload.desc
     2526WgetDownload.desc:الف؊ة الأساس التي تتناول الإستدعاء الي wget  # Updated 11-Oct-2007 by kkhalafala
    16642527WgetDownload.proxy_on:ؚروكسي ن؎ط
    16652528WgetDownload.proxy_host:Ù
     
    17092572#
    17102573
    1711 # -- Missing translation: BasPlugout.desc
    1712 # -- Missing translation: BasPlugout.bad_general_option
     2574BasPlugout.desc:Base class for all the export plugouts.
     2575BasPlugout.bad_general_option:%s plugout تستخدÙ
     2576 Ø®ÙŠØ§Ø± غير صحيح.  # Updated 11-Oct-2007 by kkhalafala
    17132577
    17142578#
  • gsdl/trunk/perllib/strings_mr.properties

    r13444 r14657  
    77
    88# -- Missing translation: OutputEncoding.unix
    9 # -- Missing translation: OutputEncoding.windows
     9OutputEncoding.windows:iso_8859_1  # Updated 5-Jan-2007 by shubha
    1010
    1111
     
    1818# -- Missing translation: common.cannot_find_cfg_file
    1919
    20 # -- Missing translation: common.cannot_open
     20common.cannot_open:ERROR: Can't open %s  # Updated 5-Jan-2007 by shubha
    2121
    2222# -- Missing translation: common.cannot_open_fail_log
     
    2626# -- Missing translation: common.cannot_read
    2727
    28 # -- Missing translation: common.cannot_read_file
     28common.cannot_read_file:à€šà¥‚à€•à€ƒ à€«à€Ÿà€ˆà€² à€µà€Ÿà€šà€€à€Ÿ à€¯à¥‡à€€ à€šà€Ÿà€¹à¥€.  # Updated 9-Jan-2007 by shubha
    2929
    3030# -- Missing translation: common.general_options
     
    3232# -- Missing translation: common.must_be_implemented
    3333
    34 # -- Missing translation: common.options
     34common.options:à€‘à€ªà¥à€¶à€š  # Updated 27-Dec-2006 by shubha
    3535
    3636# -- Missing translation: common.processing
     
    3838# -- Missing translation: common.specific_options
    3939
    40 # -- Missing translation: common.usage
     40common.usage:à€¯à¥à€œà¥‡à€ž  # Updated 21-Dec-2006 by shubha
    4141
    4242# -- Missing translation: common.info
    4343
    44 # -- Missing translation: common.invalid_options
     44common.invalid_options:Invalid arguments: %s  # Updated 27-Dec-2006 by shubha
    4545
    4646#
     
    4848#
    4949
    50 # -- Missing translation: scripts.language
     50scripts.language:Language to display option descriptions in (eg. 'en_US' specifies American English). Requires translations of the option descriptions to exist in the perllib/strings_language-code.rb file.  # Updated 2-Jan-2007 by shubha
    5151
    5252scripts.xml:Produces the information in an XML form, without 'pretty' comments but with much more detail.  # Updated 3-Nov-2006 by shubha
    5353
    54 # -- Missing translation: scripts.listall
    55 # -- Missing translation: scripts.describeall
    56 
    57 # -- Missing translation: scripts.both_old_options
    58 
    59 # -- Missing translation: scripts.no_old_options
     54scripts.listall:à€®à€Ÿà€¹à€¿à€€à¥€ à€
     55à€žà€²à¥‡à€²à¥‡ à€žà€°à¥à€µ à€†à€¯à€Ÿà€®à€šà¥€ à€¯à€Ÿà€Šà¥€ à€•à€°à€Ÿ  # Updated 5-Jan-2007 by shubha
     56scripts.describeall:à€®à€Ÿà€¹à¥€à€€à¥€ à€
     57à€žà€£à€Ÿà€°à¥à€¯à€Ÿ à€˜à€Ÿà€•à€Ÿà€‚à€šà¥‡ à€‘à€ªà¥à€¶à€š à€Šà€Ÿà€–à€µà€Ÿ  # Updated 20-Dec-2006 by shubha
     58
     59scripts.both_old_options:WARNING: -removeold was specified with -keepold or -incremental, defaulting to -removeold. Current contents of %s directory will be deleted.  # Updated 20-Dec-2006 by shubha
     60
     61scripts.no_old_options:WARNING: None of -removeold, -keepold or -incremental were specified, defaulting to -removeold. Current contents of %s directory will be deleted.  # Updated 5-Jan-2007 by shubha
    6062
    6163# -- buildcol.pl --
     
    6567# -- Missing translation: buildcol.builddir
    6668
    67 # -- Missing translation: buildcol.cachedir
    68 
    69 # -- Missing translation: buildcol.cannot_open_cfg_file
     69buildcol.cachedir:à€šà€¿à€°à¥à€Šà¥‡à€¶à€¿à€•à€Ÿ à€€à€¯à€Ÿà€° à€¹à¥‹à€£à¥à€¯à€Ÿà€ªà¥‚à€°à¥à€µà¥€ à€€à€Ÿà€€à¥à€ªà¥à€°à€€à€Ÿ à€žà€‚à€—à¥à€°à€¹ à€€à€¯à€Ÿà€° à€¹à¥‹à€€ à€†à€¹à¥‡.  # Updated 23-Dec-2006 by shubha
     70
     71buildcol.cannot_open_cfg_file:à€žà¥‚à€šà€šà€Ÿà€ƒ à€
     72à€Šà¥à€¯à€¯à€Ÿà€µà€€ à€•à€°à€£à¥à€¯à€Ÿà€žà€Ÿà€ à¥€ à€•à¥‰à€šà¥à€«à€¿à€— à€«à€Ÿà€ˆà€² à€‰à€˜à€¡à€€ à€šà€Ÿà€¹à¥€à€€à€ƒ %s  # Updated 6-Jan-2007 by shubha
    7073
    7174# -- Missing translation: buildcol.collectdir
     
    7376# -- Missing translation: buildcol.copying_back_cached_build
    7477
    75 # -- Missing translation: buildcol.create_images
    76 
    77 # -- Missing translation: buildcol.debug
     78buildcol.create_images:Attempt to create default images for new collection. This relies on the Gimp being installed along with relevant perl modules to allow scripting from perl.  # Updated 5-Jan-2007 by shubha
     79
     80buildcol.debug:Print output to STDOUT.  # Updated 22-Dec-2006 by shubha
    7881
    7982# -- Missing translation: buildcol.desc
    8083
    81 # -- Missing translation: buildcol.faillog
    82 
    83 # -- Missing translation: buildcol.index
     84buildcol.faillog:Fail log filename. This log receives the filenames of any files which fail to be processed.  # Updated 22-Dec-2006 by shubha
     85
     86buildcol.index:à€šà€¿à€°à¥à€Šà¥‡à€¶ à€€à€¯à€Ÿà€° à€¹à¥‹à€€ à€†à€¹à¥‡ (à€•à¥‰à€šà¥à€«à€¿à€—à€° à€«à€Ÿà€ˆà€² à€€à€¯à€Ÿà€° à€¹à¥‹à€€ à€†à€¹à¥‡ )  # Updated 22-Dec-2006 by shubha
    8487
    8588# -- Missing translation: buildcol.incremental
     
    9497# -- Missing translation: buildcol.maxnumeric
    9598# -- Missing translation: buildcol.mode
    96 # -- Missing translation: buildcol.mode.all
     99buildcol.mode.all:à€žà€°à¥à€µ à€•à€°à€Ÿ.  # Updated 20-Dec-2006 by shubha
    97100# -- Missing translation: buildcol.mode.build_index
    98 # -- Missing translation: buildcol.mode.compress_text
    99 # -- Missing translation: buildcol.mode.infodb
     101buildcol.mode.compress_text:Just compress the text.  # Updated 23-Dec-2006 by shubha
     102buildcol.mode.infodb:à€®à¥‡à€Ÿà¥‹à€¡à¥‡à€Ÿà€Ÿà€šà€Ÿ à€¡à¥‡à€Ÿà€Ÿà€¬à€Ÿà€ž à€€à€¯à€Ÿà€° à€•à€°à€Ÿ.  # Updated 22-Dec-2006 by shubha
    100103
    101104# -- Missing translation: buildcol.no_default_images
     
    105108# -- Missing translation: buildcol.no_strip_html
    106109
    107 # -- Missing translation: buildcol.no_text
     110buildcol.no_text:Don't store compressed text. This option is useful for minimizing the size of the built indexes if you intend always to display the original documents at run time (i.e. you won't be able to retrieve the compressed text version).  # Updated 20-Dec-2006 by shubha
    108111
    109112# -- Missing translation: buildcol.sections_index_document_metadata
    110113# -- Missing translation: buildcol.sections_index_document_metadata.never
    111 # -- Missing translation: buildcol.sections_index_document_metadata.always
    112 # -- Missing translation: buildcol.sections_index_document_metadata.unless_section_metadata_exists
    113 
    114 # -- Missing translation: buildcol.out
    115 
    116 # -- Missing translation: buildcol.params
    117 
    118 # -- Missing translation: buildcol.remove_empty_classifications
     114buildcol.sections_index_document_metadata.always:Add all specified document level metadata even if section level metadata of that name exists.  # Updated 23-Dec-2006 by shubha
     115buildcol.sections_index_document_metadata.unless_section_metadata_exists:Only add document level metadata if no section level metadata of that name exists.  # Updated 27-Dec-2006 by shubha
     116
     117buildcol.out:Filename or handle to print output status to.  # Updated 5-Jan-2007 by shubha
     118
     119buildcol.params:(à€‘à€ªà¥à€¶à€š) à€žà€‚à€—à¥à€°à€¹ - à€šà€Ÿà€µ  # Updated 15-Jan-2007 by shubha
     120
     121buildcol.remove_empty_classifications:à€°à€¿à€•à€Ÿà€®à¥‡ à€•à¥à€²à€Ÿà€žà€¿à€«à€Ÿà€¯à€° à€†à€£à€¿ à€•à¥à€²à€Ÿà€žà€¿à€«à€¿à€•à¥‡à€¶à€š à€šà¥‹à€¡ à€²à€ªà€µà€Ÿ ( à€¯à€Ÿ à€®à€§à¥à€¯à¥‡ à€•à€Ÿà€¹à¥€à€¹à¥€ à€ªà¥à€°à€²à¥‡à€– à€šà€Ÿà€¹à¥€à€€).  # Updated 23-Dec-2006 by shubha
    119122
    120123# -- Missing translation: buildcol.removeold
    121124
    122 # -- Missing translation: buildcol.unlinked_col_images
     125buildcol.unlinked_col_images:à€šà€¿à€€à¥à€° à€žà€‚à€—à¥à€°à€¹à€Ÿà€šà¥€ à€²à€¿à€‚à€• à€œà¥‹à€¡à€²à¥€ à€—à¥‡à€²à¥€ à€šà€Ÿà€¹à¥€  # Updated 5-Jan-2007 by shubha
    123126
    124127# -- Missing translation: buildcol.unknown_mode
     
    135138# -- Missing translation: classinfo.desc
    136139
    137 # -- Missing translation: classinfo.general_options
     140classinfo.general_options:General options are inherited from parent classes of the classifier.  # Updated 23-Dec-2006 by shubha
    138141
    139142# -- Missing translation: classinfo.info
     
    150153
    151154# -- downloadfrom.pl --
    152 # -- Missing translation: downloadfrom.cache_dir
     155downloadfrom.cache_dir:The location of the cache directory  # Updated 9-Jan-2007 by shubha
    153156# -- Missing translation: downloadfrom.desc
    154157# -- Missing translation: downloadfrom.download_mode
     
    157160# -- Missing translation: downloadfrom.download_mode.z3950
    158161# -- Missing translation: downloadfrom.download_mode.SRW
    159 # -- Missing translation: downloadfrom.incorrect_mode
     162downloadfrom.incorrect_mode:à€¡à€Ÿà€Šà€šà€²à¥‹à€¡ à€®à¥‹à€¡ à€
     163à€¯à¥‹à€—à¥à€¯.  # Updated 21-Dec-2006 by shubha
    160164# -- Missing translation: downloadfrom.info
    161165# -- Missing translation: downloadfrom.params
     
    163167# -- downloadinfo.pl --
    164168
    165 # -- Missing translation: downloadinfo.desc
    166 # -- Missing translation: downloadinfo.collection
     169downloadinfo.desc:à€¡à€Ÿà€Šà€šà€²à¥‹à€¡ à€•à¥‡à€²à¥‡à€²à¥€ à€®à€Ÿà€¹à€¿à€€à¥€à€šà¥€ à€ªà¥à€°à€€  # Updated 15-Jan-2007 by shubha
     170downloadinfo.collection:Giving a collection name will make downloadinfo.pl look in collect/collection-name/perllib/downloaders first. If the module is not found there it will look in the general perllib/downloaders directory.  # Updated 21-Dec-2006 by shubha
    167171# -- Missing translation: downloadinfo.params
    168172# -- Missing translation: downloadinfo.general_options
     
    173177# -- Missing translation: explode.desc
    174178
    175 # -- Missing translation: explode.document_field
     179explode.document_field:The metadata element specifying the file name of documents to obtain and include in the collection.  # Updated 30-Dec-2006 by shubha
    176180
    177181# -- Missing translation: explode.document_prefix
     
    179183# -- Missing translation: explode.document_suffix
    180184
    181 # -- Missing translation: explode.encoding
     185explode.encoding:à€¡à¥‡à€Ÿà€Ÿà€¬à¥‡à€ž à€«à€Ÿà€ˆà€² à€µà€Ÿà€šà€€ à€
     186à€žà€€à€Ÿà€šà€Ÿ à€à€šà€•à¥‹à€¡à¥€à€‚à€—à€šà€Ÿ à€µà€Ÿà€ªà€° à€•à€°à€Ÿ.  # Updated 5-Jan-2007 by shubha
    182187# -- Missing translation: explode.metadata_set
    183 # -- Missing translation: explode.plugin
     188explode.plugin:Plugin to use for exploding  # Updated 1-Feb-2007 by shubha
    184189# -- Missing translation: explode.params
    185190# -- Missing translation: explode.records_per_folder
     
    187192# -- exportcol.pl --
    188193
    189 # -- Missing translation: exportcol.out
     194exportcol.out:Filename or handle to print output status to.  # Updated 21-Dec-2006 by shubha
    190195# -- Missing translation: exportcol.cddir
    191196# -- Missing translation: exportcol.cdname
     
    193198# -- Missing translation: exportcol.noinstall
    194199# -- Missing translation: exportcol.params
    195 # -- Missing translation: exportcol.coll_not_found
     200exportcol.coll_not_found:Ignoring invalid collection %s: collection not found at %s.  # Updated 6-Jan-2007 by shubha
    196201# -- Missing translation: exportcol.coll_dirs_not_found
    197 # -- Missing translation: exportcol.fail
     202exportcol.fail:exportcol.pl failed:  # Updated 5-Jan-2007 by shubha
    198203# -- Missing translation: exportcol.no_valid_colls
    199 # -- Missing translation: exportcol.couldnt_create_dir
     204exportcol.couldnt_create_dir:à€šà€¿à€°à¥à€Šà¥‡à€¶à€¿à€•à€Ÿ à€€à€¯à€Ÿà€° à€•à€°à€€à€Ÿ à€¯à¥‡à€£à€Ÿà€° à€šà€Ÿà€¹à¥€ %s.  # Updated 20-Dec-2006 by shubha
    200205# -- Missing translation: exportcol.couldnt_create_file
    201206# -- Missing translation: exportcol.instructions
     
    203208# -- Missing translation: exportcol.success
    204209# -- Missing translation: exportcol.output_dir
    205 # -- Missing translation: exportcol.export_coll_not_installed
     210exportcol.export_coll_not_installed:The Export to CD-ROM functionality has not been installed.  # Updated 5-Jan-2007 by shubha
    206211
    207212# -- import.pl --
    208213
    209 # -- Missing translation: import.archivedir
    210 
    211 # -- Missing translation: import.manifest
     214import.archivedir:Where the converted material ends up.  # Updated 23-Dec-2006 by shubha
     215
     216import.manifest:An XML file that details what files are to be imported. Used instead of recursively descending the import folder, typically for incremental building.  # Updated 22-Dec-2006 by shubha
    212217
    213218# -- Missing translation: import.cannot_open_stats_file
     
    217222# -- Missing translation: import.cannot_sort
    218223
    219 # -- Missing translation: import.collectdir
     224import.collectdir:"à€žà€‚à€—à¥à€°à€¹" à€šà€¿à€°à¥à€Šà¥‡à€¶à€š à€®à€Ÿà€°à¥à€—  # Updated 22-Dec-2006 by shubha
    220225
    221226# -- Missing translation: import.complete
     
    227232# -- Missing translation: import.faillog
    228233
    229 # -- Missing translation: import.groupsize
    230 
    231 # -- Missing translation: import.gzip
     234import.groupsize:à€à€•à€Ÿ à€à€•à¥à€žà€à€®à€à€² à€«à€Ÿà€ˆà€² à€®à€§à¥à€¯à¥‡ à€ˆà€®à¥à€ªà¥‹à€°à¥à€Ÿ à€•à¥‡à€²à¥‡à€²à¥‡ à€ªà¥à€°à€²à¥‡à€–  # Updated 10-Jan-2007 by shubha
     235
     236import.gzip:Use gzip to compress resulting xml documents (don't forget to include ZIPPlug in your plugin list when building from compressed documents).  # Updated 5-Jan-2007 by shubha
    232237
    233238# -- Missing translation: import.importdir
     
    239244# -- Missing translation: import.maxdocs
    240245
    241 # -- Missing translation: import.no_import_dir
     246import.no_import_dir:à€šà¥‚à€•à€ƒ à€ˆà€‚à€®à¥à€ªà¥‹à€°à¥à€Ÿ à€•à¥‡à€²à¥‡à€²à¥€ à€šà€¿à€°à¥à€Šà¥‡à€¶à€¿à€•à€Ÿ à€®à€¿à€³à€€ à€šà€Ÿà€¹à¥€.  # Updated 9-Jan-2007 by shubha
    242247
    243248# -- Missing translation: import.no_plugins_loaded
    244249
    245 # -- Missing translation: import.OIDtype
     250import.OIDtype:à€ªà¥à€°à€€à¥à€¯à¥‡à€• à€ªà¥à€°à€²à¥‡à€–à€Ÿà€žà€Ÿà€ à¥€ à€
     251à€Šà¥à€µà€¿à€€à¥€à€¯ à€•à¥‹à€¡ à€€à€¯à€Ÿà€° à€•à€°à€£à¥à€¯à€Ÿà€šà¥€ à€ªà€§à¥à€Šà€€.  # Updated 6-Jan-2007 by shubha
    246252# -- Missing translation: import.OIDtype.hash
    247253
     
    250256# -- Missing translation: import.OIDtype.assigned
    251257
    252 # -- Missing translation: import.OIDtype.dirname
     258import.OIDtype.dirname:à€ªà¥
     259à€°à¥‡à€‚à€Ÿ à€¡à€¿à€°à¥‡à€•à¥à€Ÿà€°à¥€à€šà¥à€¯à€Ÿ à€šà€Ÿà€µà€Ÿà€šà€Ÿ à€‰à€ªà€¯à¥‹à€— à€•à€°à€Ÿ (preceded by 'J').à€ªà¥à€°à€€à¥à€¯à¥‡à€• à€¡à€¿à€°à¥‡à€•à¥à€Ÿà€°à¥€ à€®à€§à¥à€¯à¥‡ à€à€•à€š à€ªà¥à€°à€²à¥‡à€– à€
     260à€žà€Ÿà€µà€Ÿ, à€†à€£à€¿ à€¡à€¿à€°à¥‡à€•à¥à€Ÿà€°à¥€ à€šà€Ÿà€µ à€¹à¥‡ à€
     261à€Šà¥à€µà€¿à€€à¥€à€¯ à€
     262à€žà€Ÿà€µà¥‡.E.g. import/b13as/h15ef/page.html will get an identifier of Jh15ef.  # Updated 22-Dec-2006 by shubha
    253263
    254264# -- Missing translation: import.OIDmetadata
     
    260270# -- Missing translation: import.saveas.METS
    261271
    262 # -- Missing translation: import.out
    263 
    264 # -- Missing translation: import.params
     272import.out:Filename or handle to print output status to.
     273
     274import.params:[options] collection-name  # Updated 6-Jan-2007 by shubha
    265275
    266276# -- Missing translation: import.removeold
     
    274284# -- Missing translation: import.statsfile
    275285
    276 # -- Missing translation: import.stats_backup
    277 
    278 # -- Missing translation: import.verbosity
     286import.stats_backup:Will print stats to STDERR instead.  # Updated 20-Dec-2006 by shubha
     287
     288import.verbosity:Controls the quantity of output. 0=none, 3=lots.  # Updated 11-Jan-2007 by shubha
    279289
    280290
    281291# -- export.pl --
    282292
    283 # -- Missing translation: export.exportdir
     293export.exportdir:Where the export material ends up.  # Updated 23-Dec-2006 by shubha
    284294
    285295# -- Missing translation: export.cannot_open_stats_file
     
    305315# -- Missing translation: export.importdir
    306316
    307 # -- Missing translation: export.keepold
    308 
    309 # -- Missing translation: export.maxdocs
     317export.keepold:Will not destroy the current contents of the export directory.  # Updated 5-Jan-2007 by shubha
     318
     319export.maxdocs:à€œà€Ÿà€žà¥à€€à¥€à€€ à€œà€Ÿà€žà¥à€€ à€ªà¥à€°à€²à¥‡à€– à€ªà€Ÿà€ à€µà€¿à€²à¥‡.
    310320
    311321# -- Missing translation: export.listall
     
    313323# -- Missing translation: export.saveas
    314324
    315 # -- Missing translation: export.saveas.DSpace
     325export.saveas.DSpace:à€¡à€¿à€žà¥à€ªà¥‡à€ž à€Šà€«à¥à€€à€°à€–à€Ÿà€šà¥à€¯à€Ÿà€šà¥€ à€°à¥‚à€ªà€°à¥‡à€·à€Ÿ  # Updated 5-Jan-2007 by shubha
    316326
    317327# -- Missing translation: export.saveas.METS
     
    325335export.out:Filename or handle to print output status to.  # Updated 25-Nov-2006 by shubha
    326336
    327 # -- Missing translation: export.params
     337export.params:(à€‘à€ªà¥à€¶à€š) à€žà€‚à€—à¥à€°à€¹- à€šà€Ÿà€µ १, à€žà€‚à€—à¥à€°à€¹- à€šà€Ÿà€µ ग़...  # Updated 11-Jan-2007 by shubha
    328338
    329339# -- Missing translation: export.removeold
     
    334344# -- Missing translation: export.sortmeta
    335345
    336 # -- Missing translation: export.statsfile
     346export.statsfile:Filename or handle to print export statistics to.  # Updated 22-Dec-2006 by shubha
    337347
    338348# -- Missing translation: export.stats_backup
     
    350360# -- Missing translation: mkcol.bad_name_modelcol
    351361
    352 # -- Missing translation: mkcol.cannot_find_modelcol
     362mkcol.cannot_find_modelcol:ERROR: Cannot find the model collection %s  # Updated 23-Dec-2006 by shubha
    353363
    354364# -- Missing translation: mkcol.col_already_exists
     
    360370# -- Missing translation: mkcol.creator
    361371
    362 # -- Missing translation: mkcol.creator_undefined
     372mkcol.creator_undefined:à€šà¥‚à€•à€ƒ à€žà€‚à€—à¥à€°à€¹à€• à€šà€¿à€¶à¥à€šà€¿à€€ à€•à¥‡à€²à¥‡à€²à€Ÿ à€šà€Ÿà€¹à¥€.This variable is needed to recognise duplicate collection names.  # Updated 5-Jan-2007 by shubha
    363373
    364374# -- Missing translation: mkcol.desc
    365375
    366 # -- Missing translation: mkcol.doing_replacements
     376mkcol.doing_replacements:doing replacements for %s  # Updated 20-Dec-2006 by shubha
    367377
    368378# -- Missing translation: mkcol.long_colname
     
    380390# -- Missing translation: mkcol.plugin
    381391
    382 # -- Missing translation: mkcol.public
     392mkcol.public:If this collection has anonymous access.  # Updated 22-Dec-2006 by shubha
    383393# -- Missing translation: mkcol.public.true
    384394# -- Missing translation: mkcol.public.false
     
    386396# -- Missing translation: mkcol.quiet
    387397
    388 # -- Missing translation: mkcol.success
     398mkcol.success:%s à€šà€µà€¿à€š à€žà€‚à€—à¥à€°à€¹ à€€à€¯à€Ÿà€° à€à€Ÿà€²à€Ÿ  # Updated 15-Jan-2007 by shubha
    389399
    390400# -- Missing translation: mkcol.title
    391401
    392402# -- Missing translation: mkcol.win31compat
    393 # -- Missing translation: mkcol.win31compat.true
     403mkcol.win31compat.true:à€šà€¿à€°à¥à€Šà¥‡à€¶à€¿à€•à¥‡à€šà¥‡ à€šà€Ÿà€µ ८ à€•à€¿à€‚à€µà€Ÿ à€€à¥à€¯à€Ÿà€ªà¥‡à€•à¥à€·à€Ÿ à€•à€®à¥€ à€
     404à€•à¥à€·à€°à€Ÿà€‚à€šà¥‡ à€
     405à€žà€Ÿà€µà¥‡.  # Updated 5-Jan-2007 by shubha
    394406# -- Missing translation: mkcol.win31compat.false
    395407
     
    404416# -- Missing translation: pluginfo.info
    405417
    406 # -- Missing translation: pluginfo.no_plugin_name
    407 
    408 # -- Missing translation: pluginfo.option_types
     418pluginfo.no_plugin_name:à€šà¥‚à€•à€ƒ à€€à¥à€®à¥à€¹à¥€ à€ªà¥à€²à€—à€ˆà€šà€šà¥‡ à€šà€Ÿà€µ à€Šà¥‡à€£à¥‡ à€†à€µà€¶à¥à€¯à€• à€†à€¹à¥‡.  # Updated 5-Jan-2007 by shubha
     419
     420pluginfo.option_types:à€ªà¥à€²à€—à€ˆà€š à€®à€§à¥à€¯à¥‡ à€Šà¥‹à€š à€ªà¥à€°à€•à€Ÿà€°à€šà¥‡ à€‘à€ªà¥à€¶à€š à€˜à¥‡à€Š à€¶à€•à€€à¥‡.  # Updated 5-Jan-2007 by shubha
    409421
    410422# -- Missing translation: pluginfo.params
     
    412424# -- Missing translation: pluginfo.passing_options
    413425
    414 # -- Missing translation: pluginfo.specific_options
     426pluginfo.specific_options:Specific options are defined within the plugin itself, and are available only to this particular plugin.  # Updated 23-Dec-2006 by shubha
    415427
    416428
     
    419431# -- Missing translation: plugoutinfo.collection
    420432
    421 # -- Missing translation: plugoutinfo.desc
    422 
    423 # -- Missing translation: plugoutinfo.general_options
     433plugoutinfo.desc:à€ªà¥à€²à€—à€†à€‰à€Ÿ à€µà€¿à€·à€¯à¥€ à€®à€Ÿà€¹à€¿à€€à¥€ à€²à€¿à€¹à€Ÿ.  # Updated 2-Jan-2007 by shubha
     434
     435plugoutinfo.general_options:General options are inherited from parent classes of the plugout.  # Updated 5-Jan-2007 by shubha
    424436
    425437# -- Missing translation: plugoutinfo.info
    426438
    427 # -- Missing translation: plugoutinfo.no_plugout_name
    428 
    429 # -- Missing translation: plugoutinfo.option_types
    430 
    431 # -- Missing translation: plugoutinfo.params
     439plugoutinfo.no_plugout_name:à€šà¥‚à€•à€ƒ à€€à¥à€®à¥à€¹à¥€ à€ªà¥à€²à€—à€†à€Šà€Ÿà€šà¥‡ à€šà€Ÿà€µ à€Šà¥‡à€£à¥‡ à€†à€µà€¶à¥à€¯à€• à€†à€¹à¥‡.  # Updated 22-Dec-2006 by shubha
     440
     441plugoutinfo.option_types:à€ªà¥à€²à€—à€†à€Šà€Ÿà€žà¥ à€Šà¥‹à€š à€‘à€ªà¥à€¶à€š à€˜à¥‡à€Š à€¶à€•à€€à€Ÿà€€.  # Updated 5-Jan-2007 by shubha
     442
     443plugoutinfo.params:[options] plugout-name  # Updated 5-Jan-2007 by shubha
    432444
    433445# -- Missing translation: plugoutinfo.passing_options
     
    453465# -- Missing translation: METSPlugout.version
    454466
    455 # -- Missing translation: BasPlugout.group_size
     467BasPlugout.group_size:à€à€•à€Ÿà€š à€à€•à¥à€žà€à€®à€à€² à€«à€Ÿà€ˆà€² à€®à€§à¥à€¯à¥‡ à€
     468à€šà¥‡à€• à€ªà¥à€°à€²à¥‡à€–.  # Updated 22-Dec-2006 by shubha
    456469
    457470# -- Missing translation: BasPlugout.output_info
     
    461474BasPlugout.verbosity:Controls the quantity of output. 0=none, 3=lots.  # Updated 9-Nov-2006 by shubha
    462475
    463 # -- Missing translation: BasPlugout.gzip_output
    464 
    465 # -- Missing translation: BasPlugout.xslt_file
    466 
    467 # -- Missing translation: MARCXMLPlugout.group
    468 
    469 # -- Missing translation: MARCXMLPlugout.mapping_file
     476BasPlugout.gzip_output:Use gzip to compress resulting xml documents (don't forget to include ZIPPlug in your plugin list when building from compressed documents).  # Updated 5-Jan-2007 by shubha
     477
     478BasPlugout.xslt_file:Transform a document with the XSLT in the named file.  # Updated 15-Jan-2007 by shubha
     479
     480MARCXMLPlugout.group:Output the marc xml records into a single file.  # Updated 15-Jan-2007 by shubha
     481
     482MARCXMLPlugout.mapping_file:à€Ÿà¥à€°à€Ÿà€šà¥à€žà€«à¥‰à€°à€®à¥‡à€¶à€š à€•à€°à€¿à€€à€Ÿ à€®à¥
     483à€ªà¥€à€‚à€— à€«à€Ÿà€ˆà€² à€µà€Ÿà€ªà€°à€Ÿ.  # Updated 21-Dec-2006 by shubha
    470484
    471485# -- Missing translation: METSPlugout.xslt_txt
    472486
    473 # -- Missing translation: METSPlugout.xslt_mets
     487METSPlugout.xslt_mets:Transform a mets's docmets.xml with the XSLT in the named file.  # Updated 20-Dec-2006 by shubha
    474488
    475489#
     
    477491#
    478492
    479 # -- Missing translation: AllList.desc
    480 
    481 # -- Missing translation: AZCompactList.allvalues
    482 
    483 # -- Missing translation: AZCompactList.desc
    484 
    485 # -- Missing translation: AZCompactList.doclevel
     493AllList.desc:à€žà€°à¥à€µ à€ªà¥à€°à€²à¥‡à€–à€Ÿà€‚à€šà¥€ à€à€•à€š à€¯à€Ÿà€Šà¥€ à€•à€°à€Ÿ.  # Updated 27-Dec-2006 by shubha
     494
     495AZCompactList.allvalues:à€®à¥‡à€Ÿà€Ÿà€¡à¥‡à€Ÿà€Ÿ à€µà¥à€¹à€Œà¥
     496à€²à¥à€¯à¥‚ à€µà€Ÿà€ªà€°à€Ÿ.  # Updated 5-Jan-2007 by shubha
     497
     498AZCompactList.desc:Classifier plugin for sorting alphabetically (on a-zA-Z0-9). Produces a horizontal A-Z list, then a vertical list containing documents, or bookshelves for documents with common metadata.  # Updated 5-Jan-2007 by shubha
     499
     500AZCompactList.doclevel:à€ªà¥à€°à€²à¥‡à€– à€ªà¥à€°à€•à¥à€°à€¿à€¯à¥‡à€šà€Ÿ à€žà¥à€€à€°.  # Updated 21-Dec-2006 by shubha
    486501# -- Missing translation: AZCompactList.doclevel.top
    487502# -- Missing translation: AZCompactList.doclevel.section
     
    491506# -- Missing translation: AZCompactList.freqsort
    492507
    493 # -- Missing translation: AZCompactList.maxcompact
    494 
    495 # -- Missing translation: AZCompactList.metadata
    496 
    497 # -- Missing translation: AZCompactList.mincompact
    498 
    499 # -- Missing translation: AZCompactList.mingroup
     508AZCompactList.maxcompact:à€ªà¥à€°à€€à¥à€¯à¥‡à€• à€ªà€Ÿà€šà€Ÿà€µà€° à€œà€Ÿà€žà¥à€€à¥€à€€ à€œà€Ÿà€žà¥à€€ à€ªà¥à€°à€²à¥‡à€– à€Šà€¿à€žà€€à¥€à€².  # Updated 20-Dec-2006 by shubha
     509
     510AZCompactList.metadata:A single Metadata field, or a comma separated list of Metadata fields, used for classification. If a list is specified, the first metadata type that has values will be used. May be used in conjunction with the -firstvalueonly and -allvalues flags, to select only the first value, or all metadata values from the list.  # Updated 5-Jan-2007 by shubha
     511
     512AZCompactList.mincompact:à€ªà¥à€°à€€à¥à€¯à¥‡à€• à€ªà€Ÿà€šà€Ÿà€µà€° à€•à€®à¥€à€€ à€•à€®à¥€ à€ªà¥à€°à€²à¥‡à€– à€Šà€Ÿà€–à€µà€Ÿ.  # Updated 5-Jan-2007 by shubha
     513
     514AZCompactList.mingroup:The smallest value that will cause a group in the hierarchy to form.  # Updated 20-Dec-2006 by shubha
    500515
    501516# -- Missing translation: AZCompactList.minnesting
    502517
    503518AZCompactList.recopt:Used in nested metadata such as -metadata Year/Organisation.  # Updated 9-Nov-2006 by shubha
    504 # -- Missing translation: AZCompactList.sort
     519AZCompactList.sort:à€²à€¿à€« à€šà¥‹à€¡à€šà¥‡ à€®à¥‡à€Ÿà€Ÿà€¡à¥‡à€Ÿà€Ÿà€šà¥‡ à€µà€¿à€­à€Ÿà€— à€•à¥‡à€²à¥‡ à€†à€¹à¥‡à€€.
    505520
    506521# -- Missing translation: AZCompactSectionList.desc
     
    508523# -- Missing translation: AZList.desc
    509524
    510 # -- Missing translation: AZList.metadata
     525AZList.metadata:à€•à¥à€²à€Ÿà€žà€¿à€«à€¿à€•à¥‡à€¶à€šà€žà€Ÿà€ à¥€ à€µà€Ÿà€ªà€°à€€ à€
     526à€žà€²à¥‡à€²à€Ÿ १ à€®à¥‡à€Ÿà€Ÿà€¡à¥‡à€Ÿà€Ÿ à€«à€¿à€²à¥à€¡, à€®à¥‡à€Ÿà€¡à¥‡à€Ÿà€Ÿà€šà¥€ à€¯à€Ÿà€Šà¥€ à€žà¥à€µà€²à¥à€ªà€µà€¿à€°à€Ÿà€®à€šà¥‡ à€µà€¿à€­à€Ÿà€—à€€à€Ÿ à€¯à¥‡à€€à¥‡.
    511527
    512528# -- Missing translation: AZSectionList.desc
     
    516532# -- Missing translation: BasClas.builddir
    517533
    518 # -- Missing translation: BasClas.buttonname
    519 
    520 # -- Missing translation: BasClas.desc
     534BasClas.buttonname:The label for the classifier screen and button in navigation bar. The default is the metadata element specified with -metadata.  # Updated 1-Feb-2007 by shubha
     535
     536BasClas.desc:Base class for all the classifiers.  # Updated 23-Dec-2006 by shubha
    521537
    522538# -- Missing translation: BasClas.no_metadata_formatting
     
    530546# -- Missing translation: BasClas.verbosity
    531547
    532 # -- Missing translation: Browse.desc
     548Browse.desc:A fake classifier that provides a link in the navigation bar to a prototype combined browsing and searching page. Only works for mgpp collections, and is only practical for small collections.  # Updated 22-Dec-2006 by shubha
    533549
    534550# -- Missing translation: DateList.bymonth
    535551
    536 # -- Missing translation: DateList.desc
    537 
    538 # -- Missing translation: DateList.metadata
     552DateList.desc:à€•à¥à€²à€Ÿà€žà¥€à€«à€Ÿà€¯à€° à€ªà¥à€²à€—à€ˆà€šà€šà¥à€žà€Ÿà€° à€®à€Ÿà€¹à¥€à€€à¥€ à€¹à¥€ à€Šà€¿à€šà€Ÿà€‚à€•à€Ÿà€šà¥à€žà€Ÿà€° à€µà€¿à€­à€Ÿà€—à€²à¥€ à€†à€¹à¥‡.à€Šà€¿à€šà€Ÿà€‚à€• à€µà€°à¥à€·à€®à€¹à€¿à€šà€Ÿà€Šà€¿à€šà€Ÿà€‚à€• à€•à€¿à€‚à€µà€Ÿ à€µà€°à¥à€·-à€®à€¹à€¿à€šà€Ÿ-à€Šà€¿à€šà€Ÿà€‚à€• à€¯à€Ÿ à€ªà¥à€°à€•à€Ÿà€°à¥‡  # Updated 21-Dec-2006 by shubha
     553
     554DateList.metadata:à€®à¥‡à€Ÿà€Ÿà€¡à€Ÿà€Ÿà€Ÿ à€•à¥à€²à€Ÿà€žà¥€à€«à€Ÿà€¯à€° à€ªà¥à€²à€—à€ˆà€šà€šà¥à€žà€Ÿà€° à€
     555à€žà¥‚à€š à€€à¥€ à€®à€Ÿà€¹à¥€à€€à¥€ à€¹à¥€ à€Šà€¿à€šà€Ÿà€‚à€•à€Ÿà€šà¥à€žà€Ÿà€° à€µà€¿à€­à€Ÿà€—à€²à¥€ à€†à€¹à¥‡.à€Šà€¿à€šà€Ÿà€‚à€• à€µà€°à¥à€·à€®à€¹à€¿à€šà€Ÿà€Šà€¿à€šà€Ÿà€‚à€• à€•à€¿à€‚à€µà€Ÿ à€µà€°à¥à€·-à€®à€¹à€¿à€šà€Ÿ-à€Šà€¿à€šà€Ÿà€‚à€• à€¯à€Ÿ à€ªà¥à€°à€•à€Ÿà€°à¥‡  # Updated 27-Dec-2006 by shubha
    539556
    540557# -- Missing translation: DateList.reverse_sort
     
    542559# -- Missing translation: DateList.nogroup
    543560
    544 # -- Missing translation: DateList.no_special_formatting
     561DateList.no_special_formatting:à€Šà€žà¥à€€à€à€µà€œà€Ÿà€šà¥à€¯à€Ÿ à€¯à€Ÿà€Šà¥€à€®à€§à¥à€¯à¥‡ à€µà€°à¥à€· à€µ à€®à€¹à€¿à€šà€Ÿ à€¯à€Ÿ à€¬à€Šà¥à€Šà€² à€®à€Ÿà€¹à€¿à€€à¥€ à€Šà€°à¥à€¶à€µà¥‚ à€šà€•à€Ÿ.  # Updated 5-Jan-2007 by shubha
    545562
    546563# -- Missing translation: DateList.sort
     
    552569# -- Missing translation: GenericList.metadata
    553570# -- Missing translation: GenericList.partition_size_within_level
    554 # -- Missing translation: GenericList.partition_type_within_level
    555 # -- Missing translation: GenericList.sort_leaf_nodes_using
    556 # -- Missing translation: GenericList.use_hlist_for
    557 
    558 # -- Missing translation: HFileHierarchy.desc
     571GenericList.partition_type_within_level:The type of partitioning done: either 'per_letter', 'constant_size', or 'none'.  # Updated 9-Jan-2007 by shubha
     572GenericList.sort_leaf_nodes_using:Metadata fields used for sorting the leaf nodes. Use '|' to separate the metadata groups to stable sort and ';' to separate metadata fields within each group.  # Updated 5-Jan-2007 by shubha
     573GenericList.use_hlist_for:Metadata fields to use a hlist rather than a vlist. Use ',' to separate the metadata groups and ';' to separate the metadata fields within each group.  # Updated 5-Jan-2007 by shubha
     574
     575HFileHierarchy.desc:Classifier plugin for generating hierarchical classifications based on a supplementary structure file.  # Updated 22-Dec-2006 by shubha
    559576
    560577# -- Missing translation: Hierarchy.desc
    561578
    562 # -- Missing translation: Hierarchy.documents_last
     579Hierarchy.documents_last:à€•à¥à€²à€Ÿà€žà€¿à€«à€Ÿà€ˆà€¡ à€šà¥‹à€¡ à€šà€‚à€€à€° à€Šà€žà¥à€€à€à€µà€œ à€šà¥‹à€¡ à€Šà€Ÿà€–à€µà€Ÿ.  # Updated 5-Jan-2007 by shubha
    563580
    564581# -- Missing translation: Hierarchy.hfile
     
    570587# -- Missing translation: Hierarchy.separator
    571588
    572 # -- Missing translation: Hierarchy.sort
    573 
    574 # -- Missing translation: Hierarchy.suppressfirstlevel
    575 
    576 # -- Missing translation: Hierarchy.suppresslastlevel
    577 
    578 # -- Missing translation: HTML.desc
     589Hierarchy.sort:à€®à¥‡à€Ÿà€Ÿà€¡à¥‡à€Ÿà€Ÿ Metadata field to sort leaf nodes by. Leaves will not be sorted if not specified.  # Updated 11-Jan-2007 by shubha
     590
     591Hierarchy.suppressfirstlevel:Ignore the first part of the metadata value. This is useful for metadata where the first element is common, such as the import directory in gsdlsourcefilename.  # Updated 20-Dec-2006 by shubha
     592
     593Hierarchy.suppresslastlevel:Ignore the final part of the metadata value. This is useful for metadata where each value is unique, such as file paths.  # Updated 5-Jan-2007 by shubha
     594
     595HTML.desc:Creates an empty classification that's simply a link to a web page.  # Updated 15-Jan-2007 by shubha
    579596
    580597# -- Missing translation: HTML.url
     
    588605# -- Missing translation: Phind.desc
    589606
    590 # -- Missing translation: Phind.language
    591 
    592 # -- Missing translation: Phind.min_occurs
     607Phind.language:Language or languages to use building hierarchy. Languages are identified by two-letter country codes like en (English), es (Spanish), and fr (French). Language is a regular expression, so 'en|fr' (English or French) and '..' (match any language) are valid.  # Updated 21-Dec-2006 by shubha
     608
     609Phind.min_occurs:The minimum number of times a phrase must appear in the text to be included in the phrase hierarchy.  # Updated 15-Jan-2007 by shubha
    593610
    594611# -- Missing translation: Phind.savephrases
     
    602619# -- Missing translation: Phind.title
    603620
    604 # -- Missing translation: Phind.untidy
     621Phind.untidy:à€µà€°à¥à€•à€«à€Ÿà€ˆà€² à€•à€Ÿà€¢à¥‚ à€šà€•à€Ÿ.  # Updated 5-Jan-2007 by shubha
     622
     623# -- Missing translation: RecentDocumentsList.desc
     624
     625# -- Missing translation: RecentDocumentsList.include_docs_added_since
     626
     627# -- Missing translation: RecentDocumentsList.include_most_recently_added
     628
     629RecentDocumentsList.sort:Metadata to sort List by. If not specified, list will be sorted by date of modification/addition.  # Updated 1-Mar-2007 by shubha
    605630
    606631# -- Missing translation: SectionList.desc
     
    610635# -- Missing translation: Collage.geometry
    611636
    612 # -- Missing translation: Collage.maxDepth
    613 
    614 # -- Missing translation: Collage.maxDisplay
     637Collage.maxDepth:Images for collaging are drawn from mirroring the underlying browse classifier. This controls the maximum depth of the mirroring process.  # Updated 22-Dec-2006 by shubha
     638
     639Collage.maxDisplay:à€œà€Ÿà€žà¥à€€à¥€à€€à€œà€Ÿà€žà¥à€€ à€šà€¿à€€à¥à€° à€žà€‚à€—à¥à€°à€¹à€Ÿà€€ à€Šà€¿à€žà€Ÿà€µà€¯à€Ÿà€ž à€¹à€µà¥€.  # Updated 5-Jan-2007 by shubha
    615640
    616641# -- Missing translation: Collage.imageType
    617642
    618 # -- Missing translation: Collage.bgcolor
     643Collage.bgcolor:The background color of the collage canvas, specified in hexadecimal form (for example #008000 results in a forest green background).  # Updated 2-Jan-2007 by shubha
    619644
    620645# -- Missing translation: Collage.buttonname
     
    622647# -- Missing translation: Collage.refreshDelay
    623648
    624 # -- Missing translation: Collage.isJava2
    625 
    626 # -- Missing translation: Collage.imageMustNotHave
     649Collage.isJava2:Used to control which run-time classes of Java are used. More advanced version of Java (i.e. Java 1.2 onwards) include more sophisticated support for controlling transparency in images, this flag helps control what happens, however the built-in Java runtime for some browsers is version 1.1.  The applet is designed to, by default, auto-detect which version of Java the browser is running and act accordingly.  # Updated 15-Jan-2007 by shubha
     650
     651Collage.imageMustNotHave:Used to suppress images that should not appear in the collage, such as image buttons that make up the navigation bar.  # Updated 9-Jan-2007 by shubha
    627652
    628653# -- Missing translation: Collage.caption
    629654
     655<<<<<<< strings.properties
     656<<<<<<< strings.properties
     657<<<<<<< strings.properties
     658<<<<<<< strings.properties
     659<<<<<<< strings.properties
     660<<<<<<< strings.properties
     661<<<<<<< strings.properties
     662<<<<<<< strings.properties
     663<<<<<<< strings.properties
     664<<<<<<< strings.properties
     665<<<<<<< strings.properties
     666<<<<<<< strings.properties
     667<<<<<<< strings.properties
     668<<<<<<< strings.properties
     669<<<<<<< strings.properties
     670<<<<<<< strings.properties
     671<<<<<<< strings.properties
     672<<<<<<< strings.properties
     673<<<<<<< strings.properties
     674<<<<<<< strings.properties
     675<<<<<<< strings.properties
     676<<<<<<< strings.properties
     677<<<<<<< strings.properties
     678<<<<<<< strings.properties
     679<<<<<<< strings.properties
     680<<<<<<< strings.properties
     681<<<<<<< strings.properties
     682<<<<<<< strings.properties
     683<<<<<<< strings.properties
     684<<<<<<< strings.properties
     685<<<<<<< strings.properties
     686<<<<<<< strings.properties
     687<<<<<<< strings.properties
     688<<<<<<< strings.properties
     689<<<<<<< strings.properties
     690<<<<<<< strings.properties
     691<<<<<<< strings.properties
     692<<<<<<< strings.properties
     693<<<<<<< strings.properties
     694<<<<<<< strings.properties
     695<<<<<<< strings.properties
     696<<<<<<< strings.properties
     697<<<<<<< strings.properties
     698<<<<<<< strings.properties
     699<<<<<<< strings.properties
     700<<<<<<< strings.properties
     701<<<<<<< strings.properties
     702<<<<<<< strings.properties
     703<<<<<<< strings.properties
     704<<<<<<< strings.properties
     705<<<<<<< strings.properties
     706<<<<<<< strings.properties
     707<<<<<<< strings.properties
     708<<<<<<< strings.properties
     709<<<<<<< strings.properties
     710<<<<<<< strings.properties
     711<<<<<<< strings.properties
     712<<<<<<< strings.properties
     713<<<<<<< strings.properties
     714<<<<<<< strings.properties
     715<<<<<<< strings.properties
     716<<<<<<< strings.properties
     717<<<<<<< strings.properties
     718<<<<<<< strings.properties
     719<<<<<<< strings.properties
     720<<<<<<< strings.properties
     721<<<<<<< strings.properties
     722<<<<<<< strings.properties
     723<<<<<<< strings.properties
     724<<<<<<< strings.properties
     725<<<<<<< strings.properties
     726<<<<<<< strings.properties
     727<<<<<<< strings.properties
     728<<<<<<< strings.properties
     729<<<<<<< strings.properties
     730<<<<<<< strings.properties
     731<<<<<<< strings.properties
     732<<<<<<< strings.properties
     733<<<<<<< strings.properties
     734<<<<<<< strings.properties
     735<<<<<<< strings.properties
     736<<<<<<< strings.properties
     737<<<<<<< strings.properties
     738<<<<<<< strings.properties
     739<<<<<<< strings.properties
     740<<<<<<< strings.properties
     741<<<<<<< strings.properties
     742<<<<<<< strings.properties
     743<<<<<<< strings.properties
     744<<<<<<< strings.properties
     745<<<<<<< strings.properties
     746<<<<<<< strings.properties
     747<<<<<<< strings.properties
     748NewList.desc:Get newly modified documents classifier plugin.
     749
     750NewList.after_specified_date:Used to specify a date. The date input format:dd/mm/yyyy
     751
     752NewList.return_doc_size:The number of docs returned from the collection.
     753
     754=======
     755NewList.desc:Get newly modified documents classifier plugin.
     756
     757NewList.after_specified_date:Used to specify a date. The date input format is either yyyymmdd or yyyy-mm-dd
     758
     759NewList.return_doc_size:The number of docs returned from the collection.
     760
     761>>>>>>> 1.38
     762=======
     763# -- Missing translation: NewList.desc
     764
     765NewList.after_specified_date:à€Šà€¿à€šà€Ÿà€‚à€•-à€®à€¹à€¿à€šà€Ÿ-à€µà€°à¥à€·  # Updated 31-Jan-2007 by shubha
     766
     767NewList.return_doc_size:à€žà€‚à€—à¥à€°à€¹à€Ÿà€€à¥€à€² à€
     768à€šà¥‡à€• à€Šà€žà¥à€€à€à€µà€œ  # Updated 31-Jan-2007 by shubha
     769
     770>>>>>>> 1.38
     771=======
     772
     773>>>>>>> 1.39
     774=======
     775
     776>>>>>>> 1.39
     777=======
     778
     779>>>>>>> 1.39
     780=======
     781
     782>>>>>>> 1.39
     783=======
     784
     785>>>>>>> 1.39
     786=======
     787
     788>>>>>>> 1.39
     789=======
     790
     791>>>>>>> 1.39
     792=======
     793
     794>>>>>>> 1.39
     795=======
     796
     797>>>>>>> 1.39
     798=======
     799
     800>>>>>>> 1.39
     801=======
     802
     803>>>>>>> 1.39
     804=======
     805
     806>>>>>>> 1.39
     807=======
     808
     809>>>>>>> 1.39
     810=======
     811
     812>>>>>>> 1.39
     813=======
     814
     815>>>>>>> 1.39
     816=======
     817
     818>>>>>>> 1.39
     819=======
     820
     821>>>>>>> 1.39
     822=======
     823
     824>>>>>>> 1.39
     825=======
     826
     827>>>>>>> 1.39
     828=======
     829
     830>>>>>>> 1.39
     831=======
     832
     833>>>>>>> 1.39
     834=======
     835
     836>>>>>>> 1.39
     837=======
     838
     839>>>>>>> 1.39
     840=======
     841
     842>>>>>>> 1.39
     843=======
     844
     845>>>>>>> 1.39
     846=======
     847
     848>>>>>>> 1.39
     849=======
     850
     851>>>>>>> 1.39
     852=======
     853
     854>>>>>>> 1.39
     855=======
     856
     857>>>>>>> 1.39
     858=======
     859
     860>>>>>>> 1.39
     861=======
     862
     863>>>>>>> 1.39
     864=======
     865
     866>>>>>>> 1.39
     867=======
     868
     869>>>>>>> 1.39
     870=======
     871
     872>>>>>>> 1.39
     873=======
     874
     875>>>>>>> 1.39
     876=======
     877
     878>>>>>>> 1.39
     879=======
     880
     881>>>>>>> 1.39
     882=======
     883
     884>>>>>>> 1.39
     885=======
     886
     887>>>>>>> 1.39
     888=======
     889
     890>>>>>>> 1.39
     891=======
     892
     893>>>>>>> 1.39
     894=======
     895
     896>>>>>>> 1.39
     897=======
     898
     899>>>>>>> 1.39
     900=======
     901
     902>>>>>>> 1.39
     903=======
     904
     905>>>>>>> 1.39
     906=======
     907
     908>>>>>>> 1.39
     909=======
     910
     911>>>>>>> 1.39
     912=======
     913
     914>>>>>>> 1.39
     915=======
     916
     917>>>>>>> 1.39
     918=======
     919
     920>>>>>>> 1.39
     921=======
     922
     923>>>>>>> 1.39
     924=======
     925
     926>>>>>>> 1.39
     927=======
     928
     929>>>>>>> 1.39
     930=======
     931
     932>>>>>>> 1.39
     933=======
     934
     935>>>>>>> 1.39
     936=======
     937
     938>>>>>>> 1.39
     939=======
     940
     941>>>>>>> 1.39
     942=======
     943
     944>>>>>>> 1.39
     945=======
     946
     947>>>>>>> 1.39
     948=======
     949
     950>>>>>>> 1.39
     951=======
     952
     953>>>>>>> 1.39
     954=======
     955
     956>>>>>>> 1.39
     957=======
     958
     959>>>>>>> 1.39
     960=======
     961
     962>>>>>>> 1.39
     963=======
     964
     965>>>>>>> 1.39
     966=======
     967
     968>>>>>>> 1.39
     969=======
     970
     971>>>>>>> 1.39
     972=======
     973
     974>>>>>>> 1.39
     975=======
     976
     977>>>>>>> 1.39
     978=======
     979
     980>>>>>>> 1.39
     981=======
     982
     983>>>>>>> 1.39
     984=======
     985
     986>>>>>>> 1.39
     987=======
     988
     989>>>>>>> 1.39
     990=======
     991
     992>>>>>>> 1.39
     993=======
     994
     995>>>>>>> 1.39
     996=======
     997
     998>>>>>>> 1.39
     999=======
     1000
     1001>>>>>>> 1.39
     1002=======
     1003
     1004>>>>>>> 1.39
     1005=======
     1006
     1007>>>>>>> 1.39
     1008=======
     1009
     1010>>>>>>> 1.39
     1011=======
     1012
     1013>>>>>>> 1.39
     1014=======
     1015
     1016>>>>>>> 1.39
     1017=======
     1018
     1019>>>>>>> 1.39
     1020=======
     1021
     1022>>>>>>> 1.39
     1023=======
     1024
     1025>>>>>>> 1.39
     1026=======
     1027
     1028>>>>>>> 1.39
     1029=======
     1030
     1031>>>>>>> 1.39
     1032=======
     1033
     1034>>>>>>> 1.39
     1035=======
     1036
     1037>>>>>>> 1.39
     1038=======
     1039
     1040>>>>>>> 1.39
     1041=======
     1042
     1043>>>>>>> 1.39
    6301044#
    6311045# Plugin option descriptions
    6321046#
    6331047
    634 # -- Missing translation: ArcPlug.desc
     1048ArcPlug.desc:Plugin which recurses through an archives.inf file (i.e. the file generated in the archives directory when an import is done), processing each file it finds.  # Updated 22-Dec-2006 by shubha
    6351049
    6361050BasPlug.adding:à€­à€°à€Ÿ  # Updated 25-Nov-2006 by shubha
     
    6401054# -- Missing translation: BasPlug.bad_general_option
    6411055
    642 # -- Missing translation: BasPlug.block_exp
     1056BasPlug.block_exp:Files matching this regular expression will be blocked from being passed to any later plugins in the list. This has no real effect other than to prevent lots of warning messages about input files you don't care about. Each plugin might have a default block_exp. e.g. by default HTMLPlug blocks any files with .gif, .jpg, .jpeg, .png or .css file extensions.  # Updated 23-Dec-2006 by shubha
    6431057
    6441058# -- Missing translation: BasPlug.associate_ext
    6451059
    646 # -- Missing translation: BasPlug.could_not_extract_encoding
     1060BasPlug.could_not_extract_encoding:à€žà¥‚à€šà€šà€Ÿ: %s - à€
     1061à€šà¥‚à€• %s à€¯à¥‡à€¥à¥‚à€š à€à€šà€•à¥‹à€¡à¥€à€‚à€— à€¹à¥‹à€£à€Ÿà€° à€šà€Ÿà€¹à¥€.  # Updated 20-Dec-2006 by shubha
    6471062
    6481063# -- Missing translation: BasPlug.could_not_extract_language
    6491064
    650 # -- Missing translation: BasPlug.could_not_open_for_reading
     1065BasPlug.could_not_open_for_reading:à€µà€Ÿà€šà€šà€Ÿà€•à€°à¥€à€€à€Ÿ à€‰à€˜à€¡à€€à€Ÿ à€¯à¥‡à€£à€Ÿà€° à€šà€Ÿà€¹à¥€.  # Updated 20-Dec-2006 by shubha
    6511066
    6521067# -- Missing translation: BasPlug.no_cover_image
     
    6581073# -- Missing translation: BasPlug.desc
    6591074
    660 # -- Missing translation: BasPlug.done_acronym_extract
    661 
    662 # -- Missing translation: BasPlug.done_acronym_markup
     1075BasPlug.done_acronym_extract:à€žà€‚à€•à¥à€·à€¿à€ªà¥à€€ à€šà€Ÿà€µà¥‡  # Updated 22-Dec-2006 by shubha
     1076
     1077BasPlug.done_acronym_markup:à€žà€‚à€•à¥à€·à€¿à€ªà¥à€€ à€šà€Ÿà€µ  # Updated 15-Jan-2007 by shubha
    6631078
    6641079# -- Missing translation: BasPlug.done_email_extract
    6651080
    666 # -- Missing translation: BasPlug.dummy_text
    667 
    668 # -- Missing translation: BasPlug.empty_file
     1081BasPlug.dummy_text:à€¯à€Ÿ à€Šà€žà¥à€€à€à€µà€œà€Ÿà€€ à€®à€Ÿà€¹à€¿à€€à¥€ à€šà€Ÿà€¹à¥€.  # Updated 5-Jan-2007 by shubha
     1082
     1083BasPlug.empty_file:à€«à€Ÿà€ˆà€² à€®à€§à¥à€¯à¥‡ à€®à€Ÿà€¹à€¿à€€à¥€ à€šà€Ÿà€¹à¥€  # Updated 23-Dec-2006 by shubha
    6691084
    6701085# -- Missing translation: BasPlug.extract_acronyms
     
    6821097# -- Missing translation: BasPlug.extract_keyphrases
    6831098
    684 # -- Missing translation: BasPlug.extract_keyphrases_kea4
    685 
    686 # -- Missing translation: BasPlug.extract_keyphrase_options
    687 
    688 # -- Missing translation: BasPlug.extracting_emails
    689 
    690 # -- Missing translation: BasPlug.file_has_no_text
     1099BasPlug.extract_keyphrases_kea4:Extract keyphrases automatically with Kea 4.0 (default settings). Kea 4.0 is a new version of Kea that has been developed for controlled indexing of documents in the domain of agriculture.  # Updated 21-Dec-2006 by shubha
     1100
     1101BasPlug.extract_keyphrase_options:Options for keyphrase extraction with Kea. For example: mALIWEB - use ALIWEB extraction model; n5 - extract 5 keyphrase;, eGBK - use GBK encoding.  # Updated 5-Jan-2007 by shubha
     1102
     1103BasPlug.extracting_emails:extracting e-mail addresses  # Updated 22-Dec-2006 by shubha
     1104
     1105BasPlug.file_has_no_text:à€šà¥‚à€•à€ƒ %s contains no text  # Updated 22-Dec-2006 by shubha
    6911106
    6921107# -- Missing translation: BasPlug.first
    6931108
    6941109BasPlug.input_encoding:The encoding of the source documents. Documents will be converted from these encodings and stored internally as utf8.  # Updated 3-Nov-2006 by shubha
    695 # -- Missing translation: BasPlug.input_encoding.ascii
    696 # -- Missing translation: BasPlug.input_encoding.auto
     1110BasPlug.input_encoding.ascii:Plain 7 bit ascii. This may be a bit faster than using iso_8859_1. Beware of using this on a collection of documents that may contain characters outside the plain 7 bit ascii set though (e.g. German or French documents containing accents), use iso_8859_1 instead.  # Updated 15-Jan-2007 by shubha
     1111BasPlug.input_encoding.auto:Use text categorization algorithm to automatically identify the encoding of each source document. This will be slower than explicitly setting the encoding but will work where more than one encoding is used within the same collection.  # Updated 23-Dec-2006 by shubha
    6971112
    6981113# -- Missing translation: BasPlug.input_encoding.unicode
     
    7061121# -- Missing translation: BasPlug.markup_acronyms
    7071122
    708 # -- Missing translation: BasPlug.maximum_century
     1123BasPlug.maximum_century:The maximum named century to be extracted as historical metadata (e.g. 14 will extract all references up to the 14th century).  # Updated 11-Jan-2007 by shubha
    7091124
    7101125# -- Missing translation: BasPlug.maximum_year
     
    7201135BasPlug.read_denied:%s à€¡à€¿à€šà€Ÿà€ˆà€¡ à€•à€°à€£à¥à€¯à€Ÿà€žà€Ÿà€ à¥€ à€ªà€°à€µà€Ÿà€šà€—à¥€  # Updated 25-Nov-2006 by shubha
    7211136
    722 # -- Missing translation: BasPlug.separate_cjk
    723 
    724 # -- Missing translation: BasPlug.smart_block
    725 
    726 # -- Missing translation: BasPlug.stems
     1137BasPlug.separate_cjk:Insert spaces between Chinese/Japanese/Korean characters to make each character a word. Use if text is not segmented.  # Updated 22-Dec-2006 by shubha
     1138
     1139BasPlug.smart_block:Block files in a smarter way than just looking at filenames.  # Updated 27-Dec-2006 by shubha
     1140
     1141BasPlug.stems:stems  # Updated 2-Jan-2007 by shubha
    7271142
    7281143# -- Missing translation: BasPlug.unsupported_encoding
    7291144
    730 # -- Missing translation: BasPlug.wrong_encoding
     1145BasPlug.wrong_encoding:WARNING: %s was read using %s encoding but appears to be encoded as %s.  # Updated 5-Jan-2007 by shubha
    7311146
    7321147# -- Missing translation: BibTexPlug.desc
     
    7341149# -- Missing translation: BookPlug.desc
    7351150
    736 # -- Missing translation: ConvertToPlug.apply_fribidi
     1151ConvertToPlug.apply_fribidi:Run the "fribidi" Unicode Bidirectional Algorithm program over the converted file (for right-to-left text).  # Updated 20-Dec-2006 by shubha
    7371152# -- Missing translation: ConvertToPlug.convert_to
    738 # -- Missing translation: ConvertToPlug.convert_to.auto
    739 # -- Missing translation: ConvertToPlug.convert_to.html
     1153ConvertToPlug.convert_to.auto:Automatically select the format converted too.  Format chosen depends on input document type, for example Word will automatically be converted to HTML, whereas PowerPoint will be converted to Greenstone's PagedImage format.  # Updated 23-Dec-2006 by shubha
     1154ConvertToPlug.convert_to.html:à€à€šà€Ÿà¥€à€à€®à€à€² à€«à¥‰à€°à€®à¥
     1155à€Ÿ.  # Updated 27-Dec-2006 by shubha
    7401156# -- Missing translation: ConvertToPlug.convert_to.text
    741 # -- Missing translation: ConvertToPlug.convert_to.pagedimg_jpg
     1157ConvertToPlug.convert_to.pagedimg_jpg:à€œà¥‡à€ªà¥€à€ˆà€œà¥€ à€°à¥‚à€ªà€°à¥‡à€·à€Ÿ  # Updated 5-Jan-2007 by shubha
    7421158# -- Missing translation: ConvertToPlug.convert_to.pagedimg_gif
    7431159# -- Missing translation: ConvertToPlug.convert_to.pagedimg_png
    7441160
    745 # -- Missing translation: ConvertToPlug.desc
     1161ConvertToPlug.desc:This plugin is inherited by such plugins as WordPlug, PPTPlug, PSPlug, RTFPlug and PDFPlug. It facilitates the conversion of these document types to either HTML, TEXT or a series of images. It works by dynamically loading an appropriate secondary plugin (HTMLPlug, StructuredHTMLPlug, PagedImgPlug or TEXTPlug) based on the plugin argument 'convert_to'.  # Updated 5-Jan-2007 by shubha
    7461162# -- Missing translation: ConvertToPlug.keep_original_filename
    7471163# -- Missing translation: ConvertToPlug.use_strings
     
    7491165# -- Missing translation: ConvertToRogPlug.desc
    7501166
    751 # -- Missing translation: CSVPlug.desc
     1167CSVPlug.desc:A plugin for files in comma-separated value format. A new document will be created for each line of the file.  # Updated 5-Jan-2007 by shubha
    7521168
    7531169DBPlug.desc:A plugin that imports records from a database. This uses perl's DBI module, which includes back-ends for mysql, postgresql, comma separated values (CSV), MS Excel, ODBC, sybase, etc... Extra modules may need to be installed to use this. See <GSDLHOME>/etc/packages/example.dbi for an example config file.  # Updated 25-Nov-2006 by shubha
     
    7551171# -- Missing translation: DBPlug.title_sub
    7561172
    757 # -- Missing translation: DSpacePlug.desc
     1173DSpacePlug.desc:DSpacePlug takes a collection of documents exported from DSpace and imports them into Greenstone.  # Updated 22-Dec-2006 by shubha
    7581174   
    7591175# -- Missing translation: DSpacePlug.first_inorder_ext
    7601176# -- Missing translation: DSpacePlug.first_inorder_mime
    761 # -- Missing translation: DSpacePlug.only_first_doc
     1177DSpacePlug.only_first_doc:This is used to identify the primary data stream of DSpace collection document.With this option, the system will treat the first document in dublic_core metadata file as the possible primary stream.  # Updated 22-Dec-2006 by shubha
    7621178
    7631179# -- Missing translation: EMAILPlug.desc
    7641180
    765 # -- Missing translation: EMAILPlug.no_attachments
     1181EMAILPlug.no_attachments:à€œà¥‹à€¡à€²à¥‡à€²à€Ÿ à€®à¥‡à€žà¥‡à€œ à€žà¥‡à€µà¥à€¹ à€•à€°à¥ à€šà€•à€Ÿ.  # Updated 5-Jan-2007 by shubha
    7661182
    7671183# -- Missing translation: EMAILPlug.headers
     
    7691185EMAILPlug.split_exp:A perl regular expression used to split files containing many messages into individual documents.  # Updated 9-Nov-2006 by shubha
    7701186
    771 # -- Missing translation: ExcelPlug.desc
     1187ExcelPlug.desc:à€®à€Ÿà€¯à€•à¥à€°à¥‹à€žà¥‰à€ªà¥à€Ÿ à€à€•à¥à€žà¥‡à€² à€«à€Ÿà€ˆà€² à€®à€¿à€³à€µà€¿à€£à¥à€¯à€Ÿà€žà€Ÿà€ à¥€ (à€°à¥à€µà¥à€¹à€œà€š ९५ à€†à€£à€¿ ९७ )à€ªà¥à€²à€—à€ˆà€š  # Updated 22-Dec-2006 by shubha
    7721188
    7731189# -- Missing translation: FOXPlug.desc
     
    7771193# -- Missing translation: GISBasPlug.extract_placenames
    7781194
    779 # -- Missing translation: GISBasPlug.gazetteer
    780 
    781 # -- Missing translation: GISBasPlug.place_list
     1195GISBasPlug.gazetteer:Gazetteer to use to extract placenames from within text and set as metadata. Requires GIS extension to Greenstone.  # Updated 6-Jan-2007 by shubha
     1196
     1197GISBasPlug.place_list:When extracting placements, include list of placenames at start of the document. Requires GIS extension to Greenstone.  # Updated 10-Jan-2007 by shubha
    7821198
    7831199GMLPlug.desc:à€œà¥€ à€à€® à€à€² à€«à¥‰à€°à€®à¥
     
    7981214# -- Missing translation: HTMLPlug.file_is_url
    7991215
    800 # -- Missing translation: HTMLPlug.hunt_creator_metadata
    801 
    802 # -- Missing translation: HTMLPlug.keep_head
    803 
    804 # -- Missing translation: HTMLPlug.metadata_fields
    805 
    806 # -- Missing translation: HTMLPlug.no_metadata
     1216HTMLPlug.hunt_creator_metadata:à€—à¥à€°à€‚à€¥à€•à€Ÿà€° à€¯à¥‡à€¥à¥‚à€š à€®à€Ÿà€¹à€¿à€€à¥€ à€¶à¥‹à€§à¥‚à€š à€€à¥€ à€žà€‚à€—à¥à€°à€¹à€• à€¯à¥‡à€¥à¥‡ à€ à¥‡à€µà€Ÿ.  # Updated 21-Dec-2006 by shubha
     1217
     1218HTMLPlug.keep_head:à€à€šà€Ÿà¥€à€à€®à€à€² à€«à€Ÿà€ˆà€² à€®à€§à¥‚à€š à€¹à¥‡à€¡à€° à€•à€Ÿà€¢à¥‚ à€šà€•à€Ÿ.  # Updated 9-Jan-2007 by shubha
     1219
     1220HTMLPlug.metadata_fields:Comma separated list of metadata fields to attempt to extract. Use 'tag<tagname>' to have the contents of the first <tagname> pair put in a metadata element called 'tagname'. Capitalise this as you want the metadata capitalised in Greenstone, since the tag extraction is case insensitive.  # Updated 20-Dec-2006 by shubha
     1221
     1222HTMLPlug.no_metadata:Don't attempt to extract any metadata from files.  # Updated 22-Dec-2006 by shubha
    8071223
    8081224# -- Missing translation: HTMLPlug.no_strip_metadata_html
    8091225
    810 # -- Missing translation: HTMLPlug.nolinks
     1226HTMLPlug.nolinks:Don't make any attempt to trap links (setting this flag may improve speed of building/importing but any relative links within documents will be broken).  # Updated 15-Jan-2007 by shubha
    8111227
    8121228# -- Missing translation: HTMLPlug.rename_assoc_files
     
    8141230# -- Missing translation: HTMLPlug.sectionalise_using_h_tags
    8151231
    816 # -- Missing translation: HTMLPlug.title_sub
    817 
    818 # -- Missing translation: ImagePlug.converttotype
     1232HTMLPlug.title_sub:Substitution expression to modify string stored as Title. Used by, for example, PDFPlug to remove "Page 1", etc from text used as the title.  # Updated 5-Jan-2007 by shubha
     1233
     1234ImagePlug.converttotype:à€®à¥à€–à¥à€¯ à€šà€¿à€€à¥à€° 's'à€¯à€Ÿ à€®à€§à¥à€¯à¥‡ à€°à¥‚à€ªà€Ÿà€‚à€€à€°à¥€à€€ à€•à€°à€Ÿ.  # Updated 27-Dec-2006 by shubha
    8191235
    8201236# -- Missing translation: ImagePlug.desc
     
    8321248# -- Missing translation: ImagePlug.thumbnailtype
    8331249
    834 # -- Missing translation: IndexPlug.desc
     1250IndexPlug.desc:This recursive plugin processes an index.txt file. The index.txt file should contain the list of files to be included in the collection followed by any extra metadata to be associated with each file.\n\nThe index.txt file should be formatted as follows: The first line may be a key (beginning with key:) to name the metadata fields (e.g. key: Subject Organization Date). The following lines will contain a filename followed by the value that metadata entry is to be set to. (e.g. 'irma/iw097e 3.2 unesco 1993' will associate the metadata Subject=3.2, Organization=unesco, and Date=1993 with the file irma/iw097e if the above key line was used)\n\nNote that if any of the metadata fields use the Hierarchy classifier plugin then the value they're set to should correspond to the first field (the descriptor) in the appropriate classification file.\n\nMetadata values may be named separately using a tag (e.g. <Subject>3.2) and this will override any name given to them by the key line. If there's no key line any unnamed metadata value will be named 'Subject'.  # Updated 22-Dec-2006 by shubha
    8351251
    8361252# -- Missing translation: ISISPlug.desc
    8371253
    838 # -- Missing translation: ISISPlug.subfield_separator
     1254ISISPlug.subfield_separator:The string used to separate subfields in CDS/ISIS database records.  # Updated 15-Jan-2007 by shubha
    8391255
    8401256# -- Missing translation: ISISPlug.entry_separator
    8411257
    842 # -- Missing translation: LaTeXPlug.desc
    843 
    844 # -- Missing translation: LOMPlug.desc
     1258LaTeXPlug.desc:LaTeX à€ªà¥à€°à€²à¥‡à€–à€Ÿ à€žà€Ÿà€ à¥€ à€ªà¥à€²à€—à€ˆà€š  # Updated 10-Jan-2007 by shubha
     1259
     1260LOMPlug.desc:à€†à€£à€²à¥‡à€²à¥à€¯à€Ÿ LOM (Learning Object Metadata) à€«à€Ÿà€ˆà€² à€•à€°à¥€à€€à€Ÿ à€ªà¥à€²à€—à€ˆà€š.  # Updated 5-Jan-2007 by shubha
    8451261
    8461262# -- Missing translation: LOMPlug.root_tag
     
    8481264# -- Missing translation: LOMPlug.download_srcdocs
    8491265
    850 # -- Missing translation: MARCPlug.desc
    851 
    852 # -- Missing translation: MARCPlug.metadata_mapping
    853 
    854 # -- Missing translation: XMLMARCPlug.desc
    855 
    856 # -- Missing translation: XMLMARCPlug.metadata_mapping_file
     1266MARCPlug.desc:à€®à€Ÿà€°à¥à€• à€ªà¥à€²à€—à€ˆà€š  # Updated 23-Dec-2006 by shubha
     1267
     1268MARCPlug.metadata_mapping:Name of file that includes mapping details from MARC values to Greenstone metadata names. Defaults to 'marctodc.txt' found in the site's etc directory.  # Updated 22-Dec-2006 by shubha
     1269
     1270# -- Missing translation: MARCXMLPlug.desc
     1271
     1272MARCXMLPlug.metadata_mapping_file:Name of file that includes mapping details from MARC values to Greenstone metadata names. Defaults to 'marctodc.txt' found in the site's etc directory.  # Updated 5-Jan-2007 by shubha
    8571273
    8581274# -- Missing translation: MetadataCSVPlug.desc
    8591275
    860 # -- Missing translation: MetadataPass.desc
     1276MetadataPass.desc:On-the-side base class to BasPlug that supports metadata plugins utilise metadata_read pass of import.pl  # Updated 30-Dec-2006 by shubha
    8611277
    8621278# -- Missing translation: METSPlug.desc
     
    8671283
    8681284# -- Missing translation: NULPlug.assoc_field
     1285NULPlug.add_metadata_as_text:Add a table of metadata as the text of the document, rather than "This document has no text".  # Updated 10-Jan-2007 by shubha
     1286
     1287# -- Missing translation: NULPlug.remove_namespace_for_text
     1288
    8691289# -- Missing translation: OAIPlug.desc
    8701290
    8711291# -- Missing translation: OggVorbisPlug.add_technical_metadata
    8721292
    873 # -- Missing translation: OggVorbisPlug.desc
     1293OggVorbisPlug.desc:A plugin for importing Ogg Vorbis audio files.  # Updated 20-Dec-2006 by shubha
    8741294
    8751295# -- Missing translation: OpenDocumentPlug.desc
     
    8781298
    8791299# -- Missing translation: PagedImgPlug.documenttype
    880 # -- Missing translation: PagedImgPlug.documenttype.paged
    881 # -- Missing translation: PagedImgPlug.documenttype.hierarchy
    882 
    883 # -- Missing translation: PagedImgPlug.headerpage
     1300PagedImgPlug.documenttype.paged:Paged documents have next and previous arrows and a 'go to page X' box  # Updated 20-Dec-2006 by shubha
     1301PagedImgPlug.documenttype.hierarchy:à€®à¥à€–à¥à€¯ à€ªà¥à€°à€²à¥‡à€–à€Ÿà€šà¥‡ à€žà¥‚à€šà¥€ à€ªà€€à¥à€°  # Updated 22-Dec-2006 by shubha
     1302
     1303PagedImgPlug.headerpage:à€ªà¥à€°à€€à¥à€¯à¥‡à€• à€ªà¥à€°à€²à¥‡à€–à€Ÿà€²à€Ÿ à€
     1304à€žà¥‡ à€¹à¥‡à€¡à€° à€Šà¥à€¯à€Ÿ à€œà¥à€¯à€Ÿ à€®à€§à¥à€¯à¥‡ à€šà€¿à€€à¥à€° à€šà€Ÿà€¹à¥€.  # Updated 23-Dec-2006 by shubha
    8841305
    8851306# -- Missing translation: PagedImgPlug.screenview
    8861307
    887 # -- Missing translation: PagedImgPlug.screenviewsize
     1308PagedImgPlug.screenviewsize:Make screenview images of size nxn.  # Updated 5-Jan-2007 by shubha
    8881309
    8891310# -- Missing translation: PagedImgPlug.screenviewtype
    8901311
    891 # -- Missing translation: PagedImgPlug.thumbnail
     1312PagedImgPlug.thumbnail:à€ªà¥à€°à€€à¥à€¯à¥‡à€• à€šà€¿à€€à¥à€°à€Ÿà€žà€Ÿà€ à¥€ Produce a thumbnail  # Updated 5-Jan-2007 by shubha
    8921313
    8931314# -- Missing translation: PDFPlug.allowimagesonly
     
    9041325# -- Missing translation: PDFPlug.zoom
    9051326
    906 # -- Missing translation: PPTPlug.desc
     1327PPTPlug.desc:à€®à€Ÿà€¯à€•à¥à€°à¥‹à€žà¥‰à€«à¥à€Ÿ à€ªà¥‰à€µà€°à€ªà¥‰à€‡à€‚à€Ÿ à€«à€Ÿà€ˆà€² à€˜à¥‡à€£à¥à€¯à€Ÿà€•à€°à¥€à€€à€Ÿ à€ªà¥à€²à€—à€ˆà€š.  # Updated 5-Jan-2007 by shubha
    9071328
    9081329# -- Missing translation: PPTPlug.windows_scripting
     
    9141335# -- Missing translation: PSPlug.extract_date
    9151336
    916 # -- Missing translation: PSPlug.extract_pages
     1337PSPlug.extract_pages:à€ªà¥€à€à€ž à€¹à¥‡à€¡à€° à€µà€°à¥‚à€š à€ªà€Ÿà€šà¥‡ à€˜à¥à€¯à€Ÿ.  # Updated 5-Jan-2007 by shubha
    9171338
    9181339# -- Missing translation: PSPlug.extract_title
     
    9221343# -- Missing translation: RecPlug.desc
    9231344
    924 # -- Missing translation: RecPlug.recheck_directories
     1345RecPlug.recheck_directories:After the files in an import directory have been processed, re-read the directory to discover any new files created.  # Updated 11-Jan-2007 by shubha
    9251346
    9261347# -- Missing translation: RecPlug.use_metadata_files
     
    9281349# -- Missing translation: ReferPlug.desc
    9291350
    930 # -- Missing translation: ReferPlug.longdesc
     1351ReferPlug.longdesc:ReferPlug reads bibliography files in Refer format.\nBy Gordon W. Paynter (gwp\@cs.waikato.ac.nz), November 2000\n\nLoosely based on hcibib2Plug by Steve Jones (stevej\@cs.waikato.ac.nz). Which was based on EMAILPlug by Gordon Paynter (gwp\@cs.waikato.ac.nz). Which was based on old versions of HTMLplug and HCIBIBPlugby by Stefan Boddie and others -- it's hard to tell what came from where, now.\n\nReferPlug creates a document object for every reference in the file. It is a subclass of SplitPlug, so if there are multiple records, all are read.\n\nDocument text:\n\tThe document text consists of the reference in Refer format.\nMetadata:\n\t\$Creator    \%A Author name\n\t\$Title      \%T Title of article of book\n\t\$Journal   \%J Title of Journal\n\t\$Booktitle \%B Title of book containing the publication\n\t\$Report        \%R Type of Report, paper or thesis\n\t\$Volume     \%V Volume Number of Journal\n\t\$Number        \%N Number of Journal within Volume\n\t\$Editor     \%E Editor name\n\t\$Pages      \%P Page Number of article\n\t\$Publisher   \%I Name of Publisher\n\t\$Publisheraddr    \%C Publisher's address\n\t\$Date       \%D Date of publication\n\t\$Keywords   \%K Keywords associated with publication\n\t\$Abstract  \%X Abstract of publication\n\t\$Copyright\t\%* Copyright information for the article  # Updated 5-Jan-2007 by shubha
    9311352
    9321353# -- Missing translation: RogPlug.desc
     
    9521373# -- Missing translation: StructuredHTMLPlug.level2_header
    9531374
    954 # -- Missing translation: StructuredHTMLPlug.level3_header
     1375StructuredHTMLPlug.level3_header:possible user-defined styles for the level3 header in the HTML document (equivalent to <h3>).  # Updated 9-Jan-2007 by shubha
    9551376
    9561377# -- Missing translation: StructuredHTMLPlug.toc_header
     
    9661387UnknownPlug.file_format:à€«à€Ÿà€ˆà€²à€šà¥‡ à€ªà¥à€°à€•à€Ÿà€° (à€‰à€Šà€Ÿà€ƒ MPEG, MIDI, ...)  # Updated 25-Nov-2006 by shubha
    9671388
    968 # -- Missing translation: UnknownPlug.mime_type
    969 
    970 # -- Missing translation: UnknownPlug.process_extension
     1389UnknownPlug.mime_type:Mime type of the file (e.g. image/gif).  # Updated 9-Jan-2007 by shubha
     1390
     1391UnknownPlug.process_extension:Process files with this file extension. This option is an alternative to process_exp that is simpler to use but less flexible.  # Updated 22-Dec-2006 by shubha
    9711392
    9721393# -- Missing translation: UnknownPlug.srcicon
    9731394
    974 # -- Missing translation: MP3Plug.desc
     1395MP3Plug.desc:à€à€®à€ªà¥€à¥© à€«à€Ÿà€ˆà€² à€ªà¥à€°à¥‹à€žà¥‡à€ž à€•à€°à€£à¥à€¯à€Ÿà€•à€°à¥€à€€à€Ÿ à€ªà¥à€²à€—à€ˆà€š.  # Updated 5-Jan-2007 by shubha
    9751396
    9761397# -- Missing translation: MP3Plug.assoc_images
     
    9801401MP3Plug.metadata_fields:Comma separated list of metadata fields to extract (assuming present) in an MP3 file. Use \"*\" to extract all the fields.  # Updated 25-Nov-2006 by shubha
    9811402
    982 # -- Missing translation: W3ImgPlug.aggressiveness
    983 # -- Missing translation: W3ImgPlug.aggressiveness.1
    984 # -- Missing translation: W3ImgPlug.aggressiveness.2
    985 # -- Missing translation: W3ImgPlug.aggressiveness.3
    986 # -- Missing translation: W3ImgPlug.aggressiveness.4
    987 # -- Missing translation: W3ImgPlug.aggressiveness.5
    988 # -- Missing translation: W3ImgPlug.aggressiveness.6
    989 # -- Missing translation: W3ImgPlug.aggressiveness.7
    990 # -- Missing translation: W3ImgPlug.aggressiveness.8
    991 # -- Missing translation: W3ImgPlug.aggressiveness.9
     1403W3ImgPlug.aggressiveness:Range of related text extraction techniques to use.  # Updated 22-Dec-2006 by shubha
     1404W3ImgPlug.aggressiveness.1:Filename, path, ALT text only.  # Updated 5-Jan-2007 by shubha
     1405W3ImgPlug.aggressiveness.2:à€žà€°à¥à€µà€Ÿà€‚à€šà¥‡ १, à€ªà¥à€²à€ž à€•à¥
     1406à€ªà¥à€¶à€š à€œà¥‡à€¥à¥‡ à€®à€¿à€³à¥‡à€².  # Updated 5-Jan-2007 by shubha
     1407W3ImgPlug.aggressiveness.3:à€žà€°à¥à€µà€Ÿà€‚à€šà¥‡ à€Šà¥‹à€š, à€ªà¥à€²à€ž à€œà¥‡à€¥à¥‡ à€ªà€°à€¿à€šà¥à€›à¥‡à€Š à€‰à€ªà€²à€¬à¥à€§  # Updated 5-Jan-2007 by shubha
     1408W3ImgPlug.aggressiveness.4:३ à€žà€°à¥à€µ, à€†à€£à€¿ à€†à€§à¥€à€šà¥‡ à€¹à¥‡à€¡à€° (<h1>, <h2>...) à€œà¥‡à€¥à¥‡ à€‰à€ªà€²à€¬à¥à€§ à€
     1409à€žà¥‡à€².  # Updated 5-Jan-2007 by shubha
     1410W3ImgPlug.aggressiveness.5:४ à€žà€°à¥à€µ, à€†à€£à€¿ à€‰à€ªà€²à€¬à¥à€§ à€
     1411à€žà€²à¥‡à€²à€Ÿ à€¶à€Ÿà€¬à¥à€Šà€¿à€• à€žà€‚à€°à¥à€Šà€­ .  # Updated 5-Jan-2007 by shubha
     1412W3ImgPlug.aggressiveness.6:४ à€žà€°à¥à€µ, à€†à€£à€¿ à€®à¥‡à€Ÿà€Ÿà€Ÿà¥
     1413à€—à€šà¥‡ à€ªà€Ÿà€š (à€¶à€¿à€°à¥à€·à€•, à€ªà¥à€°à€®à¥à€–à€¶à€¬à¥à€Š,à€‡à€€à¥à€¯à€Ÿà€Šà¥€).  # Updated 5-Jan-2007 by shubha
     1414W3ImgPlug.aggressiveness.7:६ à€šà¥‡ à€žà€°à¥à€µ, à¥«à€µà¥ª à€à€•à€€à¥à€°.  # Updated 5-Jan-2007 by shubha
     1415W3ImgPlug.aggressiveness.8:७ à€šà¥‡ à€žà€°à¥à€µ, à€†à€£à€¿ à€°à€¿à€ªà¥€à€Ÿ à€•à¥
     1416à€ªà¥à€¶à€š, à€«à€Ÿà€ˆà€²à€šà€Ÿà€µ, à€‡à€€à¥à€¯à€Ÿà€Šà¥€ (raise ranking of more relevant results)  # Updated 5-Jan-2007 by shubha
     1417W3ImgPlug.aggressiveness.9:१ à€šà¥‡ à€žà€°à¥à€µ, à€†à€£à€¿ à€ªà¥‚à€°à¥à€£ à€Ÿà¥‡à€•à¥à€žà€šà¥‡ à€ªà€Ÿà€š.  # Updated 5-Jan-2007 by shubha
    9921418
    9931419# -- Missing translation: W3ImgPlug.caption_length
    9941420
    995 # -- Missing translation: W3ImgPlug.convert_params
    996 
    997 # -- Missing translation: W3ImgPlug.desc
     1421W3ImgPlug.convert_params:Additional parameters for ImageMagicK convert on thumbnail creation. For example, '-raise' will give a three dimensional effect to thumbnail images.  # Updated 20-Dec-2006 by shubha
     1422
     1423W3ImgPlug.desc:A plugin for extracting images and associated text from webpages.  # Updated 6-Jan-2007 by shubha
    9981424
    9991425# -- Missing translation: W3ImgPlug.document_text
     
    10011427# -- Missing translation: W3ImgPlug.index_pages
    10021428
    1003 # -- Missing translation: W3ImgPlug.max_near_text
     1429W3ImgPlug.max_near_text:Maximum characters near images to extract.  # Updated 31-Jan-2007 by shubha
    10041430
    10051431# -- Missing translation: W3ImgPlug.min_height
     
    10211447# -- Missing translation: W3ImgPlug.thumb_size
    10221448
    1023 # -- Missing translation: WordPlug.desc
     1449WordPlug.desc:à€®à€Ÿà€¯à€•à¥à€°à¥‹à€žà¥‰à€«à¥à€Ÿ à€µà€°à¥à€¡à€šà¥‡ à€ªà¥à€°à€²à¥‡à€– à€®à€¿à€³à€µà€¿à€£à¥à€¯à€Ÿà€žà€Ÿà€ à¥€ à€ªà¥à€²à€—à€ˆà€š.  # Updated 23-Dec-2006 by shubha
    10241450
    10251451# -- Missing translation: WordPlug.windows_scripting
     
    10271453# -- Missing translation: WordPlug.metadata_fields
    10281454
    1029 # -- Missing translation: XMLPlug.desc
    1030 
    1031 # -- Missing translation: XMLPlug.xslt
    1032 # -- Missing translation: ZIPPlug.desc
     1455XMLPlug.desc:à€¬à¥‡à€ž à€•à¥à€²à€Ÿà€ž à€à€•à¥à€žà€à€®à€à€² à€ªà¥à€²à€—à€žà€Ÿà€ à¥€.  # Updated 5-Jan-2007 by shubha
     1456
     1457XMLPlug.xslt:Transform a matching input document with the XSLT in the named file.  A relative filename is assumed to be in the collection's file area, for instance etc/mods2dc.xsl.  # Updated 5-Jan-2007 by shubha
     1458ZIPPlug.desc:Plugin which handles compressed and/or archived input formats currently handled formats and file extensions are:\ngzip (.gz, .z, .tgz, .taz)\nbzip (.bz)\nbzip2 (.bz2)\nzip (.zip .jar)\ntar (.tar)\n\nThis plugin relies on the following utilities being present (if trying to process the corresponding formats):\ngunzip (for gzip)\nbunzip (for bzip)\nbunzip2 \nunzip (for zip)\ntar (for tar)  # Updated 27-Dec-2006 by shubha
    10331459
    10341460#
     
    10391465
    10401466# -- Missing translation: OAIDownload.desc
    1041 # -- Missing translation: OAIDownload.url_disp
     1467OAIDownload.url_disp:à€¯à¥à€†à€°à€à€² à€žà¥‹à€°à¥à€ž  # Updated 20-Dec-2006 by shubha
    10421468# -- Missing translation: OAIDownload.url
    10431469# -- Missing translation: OAIDownload.set_disp
    1044 # -- Missing translation: OAIDownload.set
     1470OAIDownload.set:Restrict the download to the specified set in the repository  # Updated 1-Feb-2007 by shubha
    10451471# -- Missing translation: OAIDownload.get_doc_disp
    10461472# -- Missing translation: OAIDownload.get_doc
     
    10531479# -- Missing translation: WebDownload.url
    10541480# -- Missing translation: WebDownload.url_disp
    1055 # -- Missing translation: WebDownload.depth
    1056 # -- Missing translation: WebDownload.depth_disp
    1057 # -- Missing translation: WebDownload.below
     1481WebDownload.depth:à€¡à€Ÿà€Šà€šà€²à¥‹à€¡ à€•à€°à€€à€Ÿà€šà€Ÿ à€•à€¿à€€à¥€ à€¹à€Ÿà€¯à€ªà€°à€²à€¿à€‚à€• à€Šà¥‡à€€à€Ÿ à€¯à¥‡à€€à€Ÿà€€.  # Updated 10-Jan-2007 by shubha
     1482WebDownload.depth_disp:à€¡à€Ÿà€Šà€šà€²à¥‹à€¡ Depth  # Updated 5-Jan-2007 by shubha
     1483WebDownload.below:à€¯à€Ÿ à€¯à¥à€†à€°à€à€² à€«à€•à¥à€€ à€®à€¿à€°à€° à€žà€Ÿà€ˆà€Ÿ à€•à€°à€¿à€€à€Ÿ  # Updated 23-Dec-2006 by shubha
    10581484# -- Missing translation: WebDownload.below_disp
    10591485# -- Missing translation: WebDownload.within
    1060 # -- Missing translation: WebDownload.within_disp
     1486WebDownload.within_disp:à€¯à€Ÿà€š à€žà€Ÿà€ˆà€Ÿ à€®à€§à¥€à€² à€«à€•à¥à€€ à€®à€¿à€°à€° à€«à€Ÿà€ˆà€²  # Updated 22-Dec-2006 by shubha
    10611487# -- Missing translation: WebDownload.html_only
    1062 # -- Missing translation: WebDownload.html_only_disp
     1488WebDownload.html_only_disp:à€«à€•à¥à€€ à€à€šà€Ÿà¥€à€à€®à€à€² à€«à€Ÿà€ˆà€² à€¡à€Ÿà€Šà€šà€žà€²à¥‹à€¡ à€•à€°à€Ÿ.  # Updated 5-Jan-2007 by shubha
    10631489
    10641490# -- Missing translation: WgetDownload.desc
    10651491WgetDownload.proxy_on:Proxy on  # Updated 3-Nov-2006 by shubha
    1066 # -- Missing translation: WgetDownload.proxy_host
     1492WgetDownload.proxy_host:à€ªà¥à€°à¥‰à€•à¥à€à¥€ à€¹à¥‹à€žà¥à€Ÿ  # Updated 21-Dec-2006 by shubha
    10671493# -- Missing translation: WgetDownload.proxy_port
    10681494# -- Missing translation: WgetDownload.user_name
    10691495# -- Missing translation: WgetDownload.user_password
    10701496
    1071 # -- Missing translation: Z3950Download.desc
     1497Z3950Download.desc:Z3950 repositories à€¯à¥‡à€¥à¥‚à€š à€¡à€Ÿà€Šà€šà€²à¥‹à€¡ à€•à€°à€£à¥à€¯à€Ÿà€žà€Ÿà€ à¥€ à€®à¥‹à€¡à¥à€¯à¥‚à€²  # Updated 21-Dec-2006 by shubha
    10721498# -- Missing translation: Z3950Download.host
    1073 # -- Missing translation: Z3950Download.host_disp
    1074 # -- Missing translation: Z3950Download.port
     1499Z3950Download.host_disp:à€¹à¥‹à€žà¥à€Ÿ  # Updated 5-Jan-2007 by shubha
     1500Z3950Download.port:à€°à€¿à€ªà¥‹à€à€Ÿà€°à¥€à€šà€Ÿ à€ªà¥‹à€°à¥à€Ÿ à€šà€‚à€¬à€°  # Updated 11-Jan-2007 by shubha
    10751501# -- Missing translation: Z3950Download.port_disp
    10761502Z3950Download.database:à€¯à€Ÿ à€°à¥‡à€•à¥‰à€°à¥à€¡ à€•à€°à¥€à€€à€Ÿ à€¡à¥‡à€Ÿà€Ÿà€¬à¥‡à€žà€®à€§à¥à€¯à¥‡ à€¶à¥‹à€§ à€˜à¥à€¯à€Ÿ.  # Updated 22-Nov-2006 by shubha
    1077 # -- Missing translation: Z3950Download.database_disp
     1503Z3950Download.database_disp:à€¡à¥‡à€Ÿà€Ÿà€¬à¥‡à€ž  # Updated 20-Dec-2006 by shubha
    10781504# -- Missing translation: Z3950Download.find
    10791505# -- Missing translation: Z3950Download.find_disp
     
    10931519#
    10941520
    1095 # -- Missing translation: classify.could_not_find_classifier
     1521classify.could_not_find_classifier:à€šà¥‚à€•à€ƒ à€•à¥à€²à€Ÿà€žà€¿à€«à€Ÿà€¯à€° à€šà€Ÿà€¹à¥€.  # Updated 1-Feb-2007 by shubha
    10961522
    10971523# -- Missing translation: download.could_not_find_download
     
    11051531plugin.kill_file:Process killed by .kill file  # Updated 9-Nov-2006 by shubha
    11061532
    1107 # -- Missing translation: plugin.n_considered
     1533plugin.n_considered:%d à€ªà¥à€°à€²à¥‡à€– à€ªà¥à€°à€•à¥à€°à€¿à€¯à¥‡à€žà€Ÿà€ à¥€ à€˜à¥‡à€€à€²à¥‡.  # Updated 5-Jan-2007 by shubha
    11081534
    11091535# -- Missing translation: plugin.n_included
     
    11131539# -- Missing translation: plugin.n_unrecognised
    11141540
    1115 # -- Missing translation: plugin.no_plugin_could_process
    1116 
    1117 # -- Missing translation: plugin.no_plugin_could_recognise
     1541plugin.no_plugin_could_process:à€žà¥‚à€šà€šà€Ÿà€ƒ à€ªà¥à€²à€—à€ˆà€š à€ªà¥à€°à¥‹à€žà¥‡à€ž à€à€Ÿà€²à¥‡à€²à¥€ à€šà€Ÿà€¹à¥€.  # Updated 5-Jan-2007 by shubha
     1542
     1543plugin.no_plugin_could_recognise:à€žà¥‚à€šà€šà€Ÿà€ƒ %s à€ªà¥à€²à€—à€ˆà€š à€“à€³à€–à¥‚ à€¶à€•à€€ à€šà€Ÿà€¹à¥€.  # Updated 5-Jan-2007 by shubha
    11181544
    11191545# -- Missing translation: plugin.no_plugin_could_process_this_file
    11201546
    1121 # -- Missing translation: plugin.no_plugin_could_recognise_this_file
     1547plugin.no_plugin_could_recognise_this_file:à€•à¥‹à€£à€€à¥à€¯à€Ÿà€¹à¥€ à€ªà¥à€²à€—à€ˆà€šà€²à€Ÿ à€¹à¥€ à€«à€Ÿà€ˆà€² à€“à€³à€–à€€à€Ÿ à€†à€²à¥€ à€šà€Ÿà€¹à¥€.  # Updated 5-Jan-2007 by shubha
    11221548
    11231549# -- Missing translation: plugin.one_considered
     
    11271553# -- Missing translation: plugin.one_rejected
    11281554
    1129 # -- Missing translation: plugin.one_unrecognised
     1555plugin.one_unrecognised:१ à€
     1556à€šà¥‹à€³à€–à¥€  # Updated 5-Jan-2007 by shubha
    11301557
    11311558# -- Missing translation: plugin.see_faillog
     
    11351562# -- Missing translation: PrintUsage.required
    11361563
    1137 # -- Missing translation: plugout.could_not_find_plugout
     1564plugout.could_not_find_plugout:à€šà¥‚à€•à€ƒ \"%s\" à€ªà¥à€²à€—à€†à€‰à€Ÿ à€®à€¿à€³à€€ à€šà€Ÿà€¹à¥€  # Updated 23-Dec-2006 by shubha
Note: See TracChangeset for help on using the changeset viewer.