From: cvs2git Date: Mon, 5 Apr 2010 07:08:57 +0000 (+0000) Subject: This commit was manufactured by cvs2svn to create tag 'freeside_1_9_2'. X-Git-Tag: freeside_1_9_2 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=19145f5b2abf31e5105920516c48ac685c15c513;hp=9b43c7df599da8a0fd1502eb10b3367762ec9c75 This commit was manufactured by cvs2svn to create tag 'freeside_1_9_2'. --- diff --git a/FS/FS/Setup.pm b/FS/FS/Setup.pm index d8e32209e..edfe912ea 100644 --- a/FS/FS/Setup.pm +++ b/FS/FS/Setup.pm @@ -153,7 +153,7 @@ sub populate_initial_data { die $@ if $@; $class->_populate_initial_data(%opt) - if $class->can('_populate_initial_data'); + if $class->can('_populate_inital_data'); my @records = @{ $data->{$table} }; diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm index c9264a044..5e987429c 100644 --- a/FS/FS/UI/Web.pm +++ b/FS/FS/UI/Web.pm @@ -362,7 +362,6 @@ setting is supplied, the cust-fields configuration value. =cut - sub cust_fields { my $record = shift; warn "FS::UI::Web::cust_fields called for $record ". @@ -371,9 +370,8 @@ sub cust_fields { #cust_header(@_) unless @cust_fields; #now need to cache to keep cust_fields # #override incase we were passed as a sub - - my $seen_unlinked = 0; + my $seen_unlinked = 0; map { if ( $record->custnum ) { warn " $record -> $_" if $DEBUG > 1; @@ -385,38 +383,6 @@ sub cust_fields { } @cust_fields; } -=item cust_fields_subs - -Returns an array of subroutine references for returning customer field values. -This is similar to cust_fields, but returns each field's sub as a distinct -element. - -=cut - -sub cust_fields_subs { - my $unlinked_warn = 0; - return map { - my $f = $_; - if( $unlinked_warn++ ) { - sub { - my $record = shift; - if( $record->custnum ) { - $record->$f(@_); - } - else { - '(unlinked)' - }; - } - } - else { - sub { - my $record = shift; - $record->$f(@_) if $record->custnum; - } - } - } @cust_fields; -} - =item cust_colors Returns an array of subroutine references (or empty strings) for returning diff --git a/FS/FS/cust_bill_ApplicationCommon.pm b/FS/FS/cust_bill_ApplicationCommon.pm index fd6fb9e73..8ba57f36f 100644 --- a/FS/FS/cust_bill_ApplicationCommon.pm +++ b/FS/FS/cust_bill_ApplicationCommon.pm @@ -5,11 +5,6 @@ use vars qw( @ISA $DEBUG $me $skip_apply_to_lineitems_hack ); use List::Util qw(min); use FS::Schema qw( dbdef ); use FS::Record qw( qsearch qsearchs dbh ); -use FS::cust_pkg; -use FS::cust_svc; -use FS::cust_bill_pkg; -use FS::part_svc; -use FS::part_export; @ISA = qw( FS::Record ); @@ -335,30 +330,6 @@ sub apply_to_lineitems { $dbh->rollback if $oldAutoCommit; return $error; } - - # trigger export_insert_on_payment - if ( $conf->exists('trigger_export_insert_on_payment') - && $cust_bill_pkg->pkgnum > 0 ) - { - if ( my $cust_pkg = $cust_bill_pkg->cust_pkg ) { - - foreach my $cust_svc ( $cust_pkg->cust_svc ) { - my $svc_x = $cust_svc->svc_x; - my @part_export = grep { $_->can('export_insert_on_payment') } - $cust_svc->part_svc->part_export; - - foreach my $part_export ( $cust_svc->part_svc->part_export ) { - $error = $part_export->_export_insert_on_payment($svc_x); - if ( $error ) { - $dbh->rollback if $oldAutoCommit; - return $error; - } - } - } - } - } - # done trigger export_insert_on_payment - } #everything should always be applied to line items in full now... sanity check diff --git a/FS/FS/export_device.pm b/FS/FS/export_device.pm deleted file mode 100644 index 69e382649..000000000 --- a/FS/FS/export_device.pm +++ /dev/null @@ -1,136 +0,0 @@ -package FS::export_device; - -use strict; -use base qw( FS::Record ); -use FS::Record qw( qsearch qsearchs dbh ); -use FS::part_export; -use FS::part_device; - -=head1 NAME - -FS::export_device - Object methods for export_device records - -=head1 SYNOPSIS - - use FS::export_device; - - $record = new FS::export_device \%hash; - $record = new FS::export_device { 'column' => 'value' }; - - $error = $record->insert; - - $error = $new_record->replace($old_record); - - $error = $record->delete; - - $error = $record->check; - -=head1 DESCRIPTION - -An FS::export_device object links a device definition (see L) -to an export (see L). FS::export_device inherits from -FS::Record. The following fields are currently supported: - -=over 4 - -=item exportdevicenum - primary key - -=item exportnum - export (see L) - -=item devicepart - device definition (see L) - -=back - -=head1 METHODS - -=over 4 - -=item new HASHREF - -Creates a new record. To add the record to the database, see L<"insert">. - -Note that this stores the hash reference, not a distinct copy of the hash it -points to. You can ask the object for a copy with the I method. - -=cut - -sub table { 'export_device'; } - -=item insert - -Adds this record to the database. If there is an error, returns the error, -otherwise returns false. - -=cut - -# may want to check for duplicates against either services or devices -# cf FS::export_svc - -=item delete - -Delete this record from the database. - -=cut - -=item replace OLD_RECORD - -Replaces the OLD_RECORD with this one in the database. If there is an error, -returns the error, otherwise returns false. - -=cut - -=item check - -Checks all fields to make sure this is a valid record. If there is -an error, returns the error, otherwise returns false. Called by the insert -and replace methods. - -=cut - -sub check { - my $self = shift; - - $self->ut_numbern('exportdevicenum') - || $self->ut_number('exportnum') - || $self->ut_foreign_key('exportnum', 'part_export', 'exportnum') - || $self->ut_number('devicepart') - || $self->ut_foreign_key('devicepart', 'part_device', 'devicepart') - || $self->SUPER::check - ; -} - -=item part_export - -Returns the FS::part_export object (see L). - -=cut - -sub part_export { - my $self = shift; - qsearchs( 'part_export', { 'exportnum' => $self->exportnum } ); -} - -=item part_device - -Returns the FS::part_device object (see L). - -=cut - -sub part_device { - my $self = shift; - qsearchs( 'part_device', { 'svcpart' => $self->devicepart } ); -} - -=back - -=head1 BUGS - -=head1 SEE ALSO - -L, L, L, schema.html from the base -documentation. - -=cut - -1; - diff --git a/FS/FS/part_device.pm b/FS/FS/part_device.pm index 49635841e..79a534ae7 100644 --- a/FS/FS/part_device.pm +++ b/FS/FS/part_device.pm @@ -1,10 +1,8 @@ package FS::part_device; use strict; -use base qw( FS::Record FS::m2m_Common ); -use FS::Record qw( qsearch qsearchs ); -use FS::part_export; -use FS::export_device; +use base qw( FS::Record ); +use FS::Record; # qw( qsearch qsearchs ); =head1 NAME @@ -109,18 +107,6 @@ sub check { $self->SUPER::check; } -=item part_export - -Returns a list of all exports (see L) for this device. - -=cut - -sub part_export { - my $self = shift; - map { qsearchs( 'part_export', { 'exportnum' => $_->exportnum } ) } - qsearch( 'export_device', { 'devicepart' => $self->devicepart } ); -} - sub process_batch_import { my $job = shift; diff --git a/FS/FS/part_export/dashcs_e911.pm b/FS/FS/part_export/dashcs_e911.pm deleted file mode 100644 index a0c3a6d6a..000000000 --- a/FS/FS/part_export/dashcs_e911.pm +++ /dev/null @@ -1,153 +0,0 @@ -package FS::part_export::dashcs_e911; - -use strict; -use vars qw(@ISA %info $me $DEBUG); -use Tie::IxHash; -use FS::part_export; - -$DEBUG = 0; -$me = '['.__PACKAGE__.']'; - -@ISA = qw(FS::part_export); - -tie my %options, 'Tie::IxHash', - 'username' => { label=>'Dash username', }, - '_password' => { label=>'Dash password', }, - 'staging' => { label=>'Staging (test mode)', type=>'checkbox', }, -; - -%info = ( - 'svc' => 'svc_phone', - 'desc' => 'Provision e911 services via Dash Carrier Services', - 'notes' => 'Provision e911 services via Dash Carrier Services', - 'options' => \%options, -); - -sub rebless { shift; } - -sub _export_insert { - my($self, $svc_phone) = (shift, shift); - return 'invalid phonenum' unless $svc_phone->phonenum; - - my $opts = { map{ $_ => $self->option($_) } keys %options }; - $opts->{wantreturn} = 1; - - my %location_hash = $svc_phone->location_hash; - my $location = { - 'address1' => $location_hash{address1}, - 'address2' => $location_hash{address2}, - 'community' => $location_hash{city}, - 'state' => $location_hash{state}, - 'postalcode' => $location_hash{zip}, - }; - - my $error_or_ref = - dash_command($opts, 'validateLocation', { 'location' => $location } ); - return $error_or_ref unless ref($error_or_ref); - - my $status = $error_or_ref->get_Location->get_status; # hate - return $status->get_description unless $status->get_code eq 'GEOCODED'; - - my $cust_pkg = $svc_phone->cust_svc->cust_pkg; - my $cust_main = $cust_pkg->cust_main if $cust_pkg; - my $caller_name = $cust_main ? $cust_main->name_short : 'unknown'; - - my $arg = { - 'uri' => { - 'uri' => 'tel:'. $svc_phone->countrycode. $svc_phone->phonenum, - 'callername' => $caller_name, - }, - 'location' => $location, - }; - - my $error_or_ref = dash_command($opts, 'addLocation', $arg ); - return $error_or_ref unless ref($error_or_ref); - - my $id = $error_or_ref->get_Location->get_locationid; - $self->_export_command('provisionLocation', { 'locationid' => $id }); -} - -sub _export_delete { - my($self, $svc_phone) = (shift, shift); - return '' unless $svc_phone->phonenum; - - my $arg = { 'uri' => 'tel:'. $svc_phone->countrycode. $svc_phone->phonenum }; - $self->_export_queue('removeURI', $arg); -} - -sub _export_suspend { - my($self) = shift; - ''; -} - -sub _export_unsuspend { - my($self) = shift; - ''; -} - -sub _export_command { - my $self = shift; - - my $opts = { map{ $_ => $self->option($_) } keys %options }; - - dash_command($opts, @_); - -} - -sub _export_replace { - my($self, $new, $old ) = (shift, shift, shift); - - # this could succeed in unprovision but fail to provision - my $arg = { 'uri' => 'tel:'. $old->countrycode. $old->phonenum }; - $self->_export_command('removeURI', $arg) || $self->_export_insert($new); -} - -#a good idea to queue anything that could fail or take any time -sub _export_queue { - my $self = shift; - - my $opts = { map{ $_ => $self->option($_) } keys %options }; - - my $queue = new FS::queue { - 'job' => "FS::part_export::dashcs_e911::dash_command", - }; - $queue->insert( $opts, @_ ); -} - -sub dash_command { - my ( $opt, $method, $arg ) = (shift, shift, shift); - - warn "$me: dash_command called with method $method\n" if $DEBUG; - - my @module = qw( - Net::DashCS::Interfaces::EmergencyProvisioningService::EmergencyProvisioningPort - SOAP::Lite - ); - - foreach my $module ( @module ) { - eval "use $module;"; - die $@ if $@; - } - - local *SOAP::Transport::HTTP::Client::get_basic_credentials = sub { - return ($opt->{'username'}, $opt->{'_password'}); - }; - - my $service = new Net::DashCS::Interfaces::EmergencyProvisioningService::EmergencyProvisioningPort( - { deserializer_args => { strict => 0 } } - ); - - $service->set_proxy('https://staging-service.dashcs.com/dash-api/soap/emergencyprovisioning/v1') - if $opt->{'staging'}; - - my $result = $service->$method($arg); - - if (not $result) { - warn "returning fault: ". $result->get_faultstring if $DEBUG; - return ''.$result->get_faultstring; - } - - warn "returning ok: $result\n" if $DEBUG; - return $result if $opt->{wantreturn}; - ''; -} diff --git a/FS/FS/part_export/domreg_opensrs.pm b/FS/FS/part_export/domreg_opensrs.pm index a9afc91cc..1799ed09e 100644 --- a/FS/FS/part_export/domreg_opensrs.pm +++ b/FS/FS/part_export/domreg_opensrs.pm @@ -1,8 +1,7 @@ package FS::part_export::domreg_opensrs; -use vars qw(@ISA %info %options $conf $me $DEBUG); +use vars qw(@ISA %info %options $conf); use Tie::IxHash; -use DateTime; use FS::Record qw(qsearchs qsearch); use FS::Conf; use FS::part_export::null; @@ -39,8 +38,6 @@ gateway when setting up this export. =cut @ISA = qw(FS::part_export::null); -$me = '[' . __PACKAGE__ . ']'; -$DEBUG = 1; my @tldlist = qw/com net org biz info name mobi at be ca cc ch cn de dk es eu fr it mx nl tv uk us/; @@ -53,10 +50,6 @@ tie %options, 'Tie::IxHash', }, 'masterdomain' => { label => 'Master domain at OpenSRS', }, - 'wait_for_pay' => { label => 'Do not provision until payment is received', - type => 'checkbox', - default => '0', - }, 'debug_level' => { label => 'Net::OpenSRS debug level', type => 'select', options => [ 0, 1, 2, 3 ], @@ -220,7 +213,6 @@ sub testmode { return 'live' if $self->machine eq "rr-n1-tor.opensrs.net"; return 'test' if $self->machine eq "horizon.opensrs.net"; undef; - } =item _export_insert @@ -249,20 +241,6 @@ sub _export_insert { return "Unknown domain action " . $svc_domain->action; } -sub _export_insert_on_payment { - my( $self, $svc_domain ) = ( shift, shift ); - warn "$me:_export_insert_on_payment called\n" if $DEBUG; - return '' unless $self->option('wait_for_pay'); - - my $queue = new FS::queue { - 'svcnum' => $svc_domain->svcnum, - 'job' => 'FS::part_export::domreg_opensrs::renew_through', - }; - $queue->insert( $self, $svc_domain ); #_export_insert with 'R' action? - - return ''; -} - ## Domain registration exports do nothing on replace. Mainly because we haven't decided what they should do. #sub _export_replace { # my( $self, $new, $old ) = (shift, shift, shift); @@ -398,11 +376,10 @@ sub register { my $srs = $self->get_srs; -# cookie not required for registration -# my $cookie = $srs->get_cookie( $self->option('masterdomain') ); -# if (!$cookie) { -# return "Unable to get cookie at OpenSRS: " . $srs->last_response(); -# } + my $cookie = $srs->get_cookie( $self->option('masterdomain') ); + if (!$cookie) { + return "Unable to get cookie at OpenSRS: " . $srs->last_response(); + } # return "Domain registration not enabled" if !$self->option('register'); return $srs->last_response() if !$srs->register_domain( $svc_domain->domain, $c); @@ -477,84 +454,6 @@ sub renew { return ''; # Should only get here if renewal succeeded } -=item renew_through [ EPOCH_DATE ] - -Attempts to renew the domain through the specified date. If no date is -provided it is gleaned from the associated cust_pkg bill date - -Like most export functions, returns an error message on failure or undef on success. - -=cut - -sub renew_through { - my ( $self, $svc_domain, $date ) = @_; - - warn "$me: renew_through called\n" if $DEBUG; - eval "use Net::OpenSRS;"; - return $@ if $@; - - unless ( $date ) { - my $cust_pkg = $svc_domain->cust_svc->cust_pkg; - return "Can't renew: no date specified and domain is not in a package." - unless $cust_pkg; - $date = $cust_pkg->bill; - } - - my $err = $self->is_supported_domain( $svc_domain ); - return $err if $err; - - warn "$me: checking status\n" if $DEBUG; - my $rv = $self->get_status($svc_domain); - return "Domain ". $svc_domain->domain. " is not renewable" - unless $rv->{expdate}; - - return "Can't parse expiration date for ". $svc_domain->domain - unless $rv->{expdate} =~ /^(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2})/; - - my ($year,$month,$day,$hour,$minute,$second) = ($1,$2,$3,$4,$5,$6); - my $exp = DateTime->new( year => $year, - month => $month, - day => $day, - hour => $hour, - minute => $minute, - second => $second, - time_zone => 'America/New_York',#timezone of opensrs - ); - - my $bill = DateTime-> - from_epoch( 'epoch' => $date, - 'time_zone' => DateTime::TimeZone->new( name => 'local' ), - ); - - my $years = 0; - while ( DateTime->compare( $bill, $exp ) > 0 ) { - $years++; - $exp->add( 'years' => 1 ); - - return "Can't renew ". $svc_domain->domain. " for more than 10 years." - if $years > 10; #no infinite loop - } - - warn "$me: renewing ". $svc_domain->domain. "for $years years\n" if $DEBUG; - my $srs = $self->get_srs; - $rv = $srs->make_request( - { - action => 'renew', - object => 'domain', - attributes => { - domain => $svc_domain->domain, - auto_renew => 0, - handle => 'process', - period => $years, - currentexpirationyear => $year, - } - } - ); - return $rv->{response_text} unless $rv->{is_success}; - - return ''; # Should only get here if renewal succeeded -} - =item revoke Attempts to revoke the domain registration. Only succeeds if invoked during the OpenSRS diff --git a/FS/FS/part_export/prizm.pm b/FS/FS/part_export/prizm.pm index 02e89c6d3..6a0554b6c 100644 --- a/FS/FS/part_export/prizm.pm +++ b/FS/FS/part_export/prizm.pm @@ -206,29 +206,6 @@ sub _export_insert { # } # } -# here we cope with a problem of prizm failing to insert for reason -# of duplicate mac addr, but doing so inconsistently... a race in prizm? - - $self->prizm_command( 'CustomerIfService', 'removeElementFromCustomer', - 0, - $cust_main->custnum, - 0, - $svc->mac_addr, - ); - - $err_or_som = $self->prizm_command( 'NetworkIfService', 'getPrizmElements', - [ 'MAC Address' ], - [ $svc->mac_addr ], - [ '=' ], - ); - if ( ref($err_or_som) && $err_or_som->result->[0] ) { # ignore errors - $self->prizm_command( 'NetworkIfService', 'deleteElement', - $err_or_som->result->[0], - 1, - ); - } -# end of coping - my $performance_profile = $svc->performance_profile; $performance_profile ||= $svc->cust_svc->cust_pkg->part_pkg->pkg; diff --git a/FS/FS/pay_batch.pm b/FS/FS/pay_batch.pm index 6a2755494..59ff2c3a0 100644 --- a/FS/FS/pay_batch.pm +++ b/FS/FS/pay_batch.pm @@ -272,12 +272,11 @@ sub import_results { }; push @all_values, [ $csv->fields(), $line ]; }elsif ($filetype eq 'fixed'){ - my @values = ( $line =~ /$formatre/ ); + my @values = ( $line =~ /$formatre/, $line ); unless (@values) { $dbh->rollback if $oldAutoCommit; return "can't parse: ". $line; }; - push @values, $line; push @all_values, \@values; }else{ $dbh->rollback if $oldAutoCommit; diff --git a/FS/FS/pay_batch/RBC.pm b/FS/FS/pay_batch/RBC.pm index 26ff95971..daf6548da 100644 --- a/FS/FS/pay_batch/RBC.pm +++ b/FS/FS/pay_batch/RBC.pm @@ -14,7 +14,7 @@ $name = 'RBC'; %import_info = ( 'filetype' => 'fixed', 'formatre' => - '^(.).{18}(.{4}).{3}(.).{11}(.{19}).{6}(.{30}).{17}(.{9})(.{18}).{6}(.{14}).{23}(.).{9}\r?$', + '^(.).{18}(.{4}).{3}(.).{11}(.{19}).{6}(.{30}).{17}(.{9})(.{18}).{6}(.{14}).{23}(.).{9}$', 'fields' => [ qw( recordtype batchnum diff --git a/FS/FS/phone_device.pm b/FS/FS/phone_device.pm index ba765e026..914f735b6 100644 --- a/FS/FS/phone_device.pm +++ b/FS/FS/phone_device.pm @@ -97,7 +97,7 @@ sub insert { return $error; } - $self->export('device_insert'); + $self->svc_phone->export('device_insert', $self); #call device export $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; @@ -124,7 +124,7 @@ sub delete { local $FS::UID::AutoCommit = 0; my $dbh = dbh; - $self->export('device_delete'); + $self->svc_phone->export('device_delete', $self); #call device export my $error = $self->SUPER::delete; if ( $error ) { @@ -167,7 +167,7 @@ sub replace { return $error; } - $new->export('device_replace', $old); + $new->svc_phone->export('device_replace', $new, $old); #call device export $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; @@ -227,64 +227,6 @@ sub svc_phone { qsearchs( 'svc_phone', { 'svcnum' => $self->svcnum } ); } -=item export HOOK [ EXPORT_ARGS ] - -Runs the provided export hook (i.e. "device_insert") for this service. - -=cut - -sub export { - my( $self, $method ) = ( shift, shift ); - - local $SIG{HUP} = 'IGNORE'; - local $SIG{INT} = 'IGNORE'; - local $SIG{QUIT} = 'IGNORE'; - local $SIG{TERM} = 'IGNORE'; - local $SIG{TSTP} = 'IGNORE'; - local $SIG{PIPE} = 'IGNORE'; - - my $oldAutoCommit = $FS::UID::AutoCommit; - local $FS::UID::AutoCommit = 0; - my $dbh = dbh; - - my $svc_phone = $self->svc_phone; - my $error = $svc_phone->export($method, $self, @_); #call device export - if ( $error ) { #netsapiens at least - $dbh->rollback if $oldAutoCommit; - return "error exporting $method event to svc_phone ". $svc_phone->svcnum. - " (transaction rolled back): $error"; - } - - $method = "export_$method" unless $method =~ /^export_/; - - foreach my $part_export ( $self->part_device->part_export ) { - next unless $part_export->can($method); - my $error = $part_export->$method($svc_phone, $self, @_); - if ( $error ) { - $dbh->rollback if $oldAutoCommit; - return "error exporting $method event to ". $part_export->exporttype. - " (transaction rolled back): $error"; - } - } - - $dbh->commit or die $dbh->errstr if $oldAutoCommit; - ''; - -} - -=item export_links - -Returns a list of html elements associated with this device's exports. - -=cut - -sub export_links { - my $self = shift; - my $return = []; - $self->export('export_device_links', $return); - $return; -} - =back =head1 BUGS diff --git a/FS/FS/prepay_credit.pm b/FS/FS/prepay_credit.pm index e5773aebd..302ba37c7 100644 --- a/FS/FS/prepay_credit.pm +++ b/FS/FS/prepay_credit.pm @@ -136,7 +136,7 @@ sub agent { =over 4 -=item generate NUM TYPE LENGTH HASHREF +=item generate NUM TYPE HASHREF Generates the specified number of prepaid cards. Returns an array reference of the newly generated card identifiers, or a scalar error message. @@ -145,12 +145,11 @@ the newly generated card identifiers, or a scalar error message. #false laziness w/agent::generate_reg_codes sub generate { - my( $num, $type, $length, $hashref ) = @_; + my( $num, $type, $hashref ) = @_; my @codeset = (); push @codeset, ( 'A'..'Z' ) if $type =~ /alpha/; push @codeset, ( '1'..'9' ) if $type =~ /numeric/; - $length ||= 8; local $SIG{HUP} = 'IGNORE'; local $SIG{INT} = 'IGNORE'; @@ -164,11 +163,11 @@ sub generate { my $dbh = dbh; my $condup = 0; #don't retry forever - + my @cards = (); for ( 1 ... $num ) { - my $identifier = join('', map($codeset[int(rand $#codeset)], (1..$length) ) ); + my $identifier = join('', map($codeset[int(rand $#codeset)], (0..7) ) ); redo if qsearchs('prepay_credit',{identifier=>$identifier}) && $condup++<23; $condup = 0; diff --git a/FS/FS/reason_type.pm b/FS/FS/reason_type.pm index 4425c64a0..482ea34e8 100644 --- a/FS/FS/reason_type.pm +++ b/FS/FS/reason_type.pm @@ -162,7 +162,9 @@ sub _populate_initial_data { # class method # my $error = $object->insert(); # die "error inserting $self into database: $error\n" # if $error; - $conf->set($_, $object->typenum); +# # or clause for 1.7.x + $conf->set($_, $object->typenum) + or die "failed setting config"; } ''; diff --git a/FS/MANIFEST b/FS/MANIFEST index e895f0bbe..4755f1f64 100644 --- a/FS/MANIFEST +++ b/FS/MANIFEST @@ -99,7 +99,6 @@ FS/part_export/communigate_pro.pm FS/part_export/communigate_pro_singledomain.pm FS/part_export/cp.pm FS/part_export/cyrus.pm -FS/part_export/dashcs_e911.pm FS/part_export/domain_shellcommands.pm FS/part_export/forward_shellcommands.pm FS/part_export/http.pm diff --git a/FS/bin/freeside-void-payments b/FS/bin/freeside-void-payments index 8c1f3dbdf..412033ccc 100755 --- a/FS/bin/freeside-void-payments +++ b/FS/bin/freeside-void-payments @@ -34,8 +34,9 @@ elsif($opt{'a'}) { or die "Agent has no payment gateway for method '$method'."; } -if(defined($opt{'X'}) and !qsearchs('reason', { reasonnum => opt{'X'} })) { - die "Cancellation reason not found: '".$opt{'X'}."'"; +if(defined($opt{'X'})) { + die "Cancellation reason not found: '".$opt{'X'}."'" + if(! qsearchs('reason', { reasonnum => $opt{'X'} } ) ); } my ($processor, $login, $password, $action, @bop_options) = @@ -132,21 +133,7 @@ if($opt{'v'}) { } sub usage { - die "Usage:\n\n freeside-void-payments [ options ] user - - options: - -a agentnum use agentnum's gateway information - -g gatewaynum use gatewaynum - -f file read transaction numbers from file - -c use ECHECK gateway instead of CARD - -r reason specify void reason (as a string) - -v be verbose - -s start-date - -e end-date limit by payment return date - -X reasonnum cancel customers whose payments are voided - (specify cancellation reason number) - -"; + die "Usage:\n\n freeside-void-payments [ -f file | [ -s start-date ] [ -e end-date ] ] [ -r 'reason' ] [ -g gatewaynum | -a agentnum ] [ -c ] [ -v ] [ -n ] [-X reasonnum ] user\n"; } __END__ @@ -159,17 +146,10 @@ freeside-void-payments - Automatically void a list of returned payments. =head1 SYNOPSIS - freeside-void-payments [ -f file | [ -s start-date ] [ -e end-date ] ] - [ -r 'reason' ] - [ -g gatewaynum | -a agentnum ] - [ -c ] [ -v ] - [ -X reasonnum ] - user + freeside-void-payments [ -f file | [ -s start-date ] [ -e end-date ] ] [ -r 'reason' ] [ -g gatewaynum | -a agentnum ] [ -c ] [ -v ] [ -n ] user =head1 DESCRIPTION -=pod - Voids payments that were returned by the payment processor. Can be run periodically from crontab or manually after receiving a list of returned payments. Normally this is a meaningful operation only for @@ -182,12 +162,12 @@ generally how the processor will identify them later. -f: Read the list of authorization numbers from the specified file. If they are not from the default payment gateway, -g or -a must be given to identify the gateway. - + If -f is not given, the script will attempt to contact the gateway and download a list of returned transactions. To support this, the Business::OnlinePayment module for the processor must implement - the get_returns() method. For an example, see - Business::OnlinePayment::WesternACH. + the I method. For an example, see + L. -s, -e: Specify the starting and ending dates for the void list. This has no effect if -f is given. The end date defaults to @@ -195,7 +175,7 @@ generally how the processor will identify them later. -r: The reason for voiding the payments, to be stored in the database. - -g: The FS::payment_gateway number for the gateway that handled + -g: The L number for the gateway that handled these payments. If -f is not given, this determines which gateway will be contacted. This overrides -a. @@ -207,9 +187,12 @@ generally how the processor will identify them later. -v: Be verbose. - -X: Automatically cancel all packages belonging to customers whose - payments were returned. Requires a cancellation reasonnum - (from FS::reason). + -X: Automatically cancel all packages belonging to customers whose payments + were returned. Requires a cancellation reasonnum (from L). + +A warning will be emitted for each transaction that can't be found. +This may happen if it's already been voided, or if the gateway +doesn't match. =head1 EXAMPLE @@ -230,7 +213,7 @@ day at 8:30 every morning: =head1 BUGS -Most payment gateways don't support it. +Most payment gateways don't support it, making the script largely useless. =head1 SEE ALSO diff --git a/FS/t/export_device.t b/FS/t/export_device.t deleted file mode 100644 index 4688326a7..000000000 --- a/FS/t/export_device.t +++ /dev/null @@ -1,5 +0,0 @@ -BEGIN { $| = 1; print "1..1\n" } -END {print "not ok 1\n" unless $loaded;} -use FS::export_device; -$loaded=1; -print "ok 1\n"; diff --git a/bin/opensrs_domain_pkgs b/bin/opensrs_domain_pkgs deleted file mode 100755 index ae1476104..000000000 --- a/bin/opensrs_domain_pkgs +++ /dev/null @@ -1,126 +0,0 @@ -#!/usr/bin/perl -w - -use strict; -use DateTime; -use Date::Format; -use Date::Parse; -use Net::OpenSRS; -use Net::Whois::Raw; -use Data::Dumper; -use FS::UID qw(adminsuidsetup); -use FS::Record qw(qsearchs qsearch); -use FS::Conf; -use FS::svc_domain; -use FS::part_pkg; -use FS::part_export; - -my $exportnum = 1; -my $pkgpart = 631; -my $user = 'qis'; - -adminsuidsetup $user; - -my $part_export = qsearchs('part_export' => { exportnum => $exportnum }) - or die "can't find export $exportnum\n"; - -my $srs = $part_export->get_srs; - -my $rv = $srs->make_request( - { - action => 'get_domains_by_expiredate', - object => 'domain', - attributes => { - exp_from => time2str('%Y-%m-%d', time() - 4*24*60*60), - exp_to => time2str('%Y-%m-%d', time() + 10*366*24*60*60), - limit => 10000, - } - } -); - -die $rv->{response_text} unless $rv->{is_success}; - -my %domains = map { $_->{name}, $_ } @{ $rv->{attributes}->{exp_domains} }; - -# each is of form -# { -# 'f_let_expire' => 'N', -# 'name' => 'wolfecpa.com', -# 'f_auto_renew' => 'N', -# 'expiredate' => '2017-09-16 04:00:00' -# }, - -foreach my $svc_domain ( $part_export->svc_x ) { - unless ( exists($domains{$svc_domain->domain}) ) { - warn $svc_domain->domain. " not at registrar. No action taken.\n"; - next; - } - - $domains{$svc_domain->domain}{seen} = 1; - - unless ( $domains{$svc_domain->domain}{expiredate} =~ - /^(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2})/ ) - { - warn "Can't parse expiration date for ". $svc_domain->domain. " skipping\n"; - next; - } - - my ($year,$month,$day,$hour,$minute,$second) = ($1,$2,$3,$4,$5,$6); - my $exp = DateTime->new( year => $year, - month => $month, - day => $day, - hour => $hour, - minute => $minute, - second => $second, - time_zone => 'America/New_York',#timezone of opensrs - ); - my $expiretime = $exp->epoch; - - my $error = $part_export->is_supported_domain($svc_domain); - warn $error if $error; - $error = undef; - - my $create = ''; - my $whois = whois($svc_domain->domain); - $whois =~ /Record created on (\d{1,2}-\w{3}-\d{4})\./ && ($create = $1); - my $createtime = str2time($create); - - unless ($createtime) { - $exp->subtract( 'years' => 1 ); - $createtime = $exp->epoch; - } - - my $new; - my $cust_svc = $svc_domain->cust_svc; - my $cust_pkg = $cust_svc->cust_pkg; - unless ($cust_pkg) { - warn $svc_domain->domain. " not linked to package. No action taken.\n"; - next; - } - - foreach my $pkg ( grep { $_->pkgpart == $pkgpart } $cust_pkg->cust_main->ncancelled_pkgs ) { - next if $pkg->cust_svc; # only handles simple 1 domain/package case - $cust_svc->pkgnum($pkg->pkgnum); - $error = $cust_svc->replace; - die "error linking to empty package: $error\n" if $error; - $cust_pkg = $pkg; - last; - } - - unless ($cust_pkg->pkgpart == $pkgpart) { - $new = new FS::cust_pkg - { custnum => $cust_pkg->custnum, pkgpart => $pkgpart }; - my $error = $new->insert; - die "error inserting package: $error\n" if $error; - $cust_svc->pkgnum($new->pkgnum); - $error = $cust_svc->replace; - die "error linking to new package: $error\n" if $error; - $cust_pkg = $new; - } - - # set dates on package if it was empty? - $cust_pkg->bill($expiretime); - $cust_pkg->setup($createtime); - $error = $cust_pkg->replace; - die $error if $error; -} - diff --git a/htetc/handler.pl b/htetc/handler.pl index 78850c481..952d6203b 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -76,11 +76,8 @@ sub handler RT::Init() if $RT::VERSION; #for lack of something else #we don't want the RT error handlers under FS - { - no warnings 'uninitialized'; - undef $SIG{__WARN__} if defined($SIG{__WARN__}); - undef $SIG{__DIE__} if defined($SIG{__DIE__} ); - } + undef $SIG{__WARN__} if defined($SIG{__WARN__}); + undef $SIG{__DIE__} if defined($SIG{__DIE__} ); $ah->interp($fs_interp); diff --git a/httemplate/docs/man/FS/part_export/.cvs_is_on_crack b/httemplate/docs/man/FS/part_export/.cvs_is_on_crack deleted file mode 100644 index e69de29bb..000000000 diff --git a/httemplate/edit/cust_main/bottomfixup.js b/httemplate/edit/cust_main/bottomfixup.js index 5d06f3c04..1a06d9497 100644 --- a/httemplate/edit/cust_main/bottomfixup.js +++ b/httemplate/edit/cust_main/bottomfixup.js @@ -225,7 +225,6 @@ function post_standardization() { } else { - cf.elements['geocode'].value = ''; post_geocode(); } diff --git a/httemplate/edit/prepay_credit.cgi b/httemplate/edit/prepay_credit.cgi index f7a1b0801..ed404b7cd 100644 --- a/httemplate/edit/prepay_credit.cgi +++ b/httemplate/edit/prepay_credit.cgi @@ -7,16 +7,13 @@ Generate -prepaid cards of - -  -characters each +prepaid cards
for + % } diff --git a/httemplate/edit/svc_domain.cgi b/httemplate/edit/svc_domain.cgi index c85dd3b72..78faf12b2 100755 --- a/httemplate/edit/svc_domain.cgi +++ b/httemplate/edit/svc_domain.cgi @@ -63,7 +63,7 @@ Available top-level domains: <% $export->option('tlds') %> % } else { - + % } % if ( $part_svc->part_svc_column('max_accounts')->columnflag =~ /^[FA]$/ ) { diff --git a/httemplate/elements/checkboxes-table.html b/httemplate/elements/checkboxes-table.html index a31bdb919..b6b04d111 100644 --- a/httemplate/elements/checkboxes-table.html +++ b/httemplate/elements/checkboxes-table.html @@ -46,7 +46,7 @@ % % my $hashref = $opt{'hashref'} || {}; % -% my $extra_sql = $opt{'extra_sql'} || ''; +% my $extra_sql = ''; % % if ( $opt{'agent_virt'} ) { % $extra_sql .= ' AND' . $FS::CurrentUser::CurrentUser->agentnums_sql( diff --git a/httemplate/elements/fckeditor/editor/css/fck_editorarea.css b/httemplate/elements/fckeditor/editor/css/fck_editorarea.css index 50cfe0e92..8539aa414 100644 --- a/httemplate/elements/fckeditor/editor/css/fck_editorarea.css +++ b/httemplate/elements/fckeditor/editor/css/fck_editorarea.css @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -26,10 +26,10 @@ * file. */ -/** - * The "body" styles should match your editor web site, mainly regarding - * background color and font family and size. - */ +/* + The "body" styles should match your editor web site, mainly regarding + background color and font family and size. +*/ body { @@ -40,20 +40,19 @@ body body, td { - font-family: Arial, Verdana, sans-serif; + font-family: Arial, Verdana, Sans-Serif; font-size: 12px; } a[href] { - color: -moz-hyperlinktext !important; /* For Firefox... mark as important, otherwise it becomes black */ - text-decoration: -moz-anchor-decoration; /* For Firefox 3, otherwise no underline will be used */ + color: #0000FF !important; /* For Firefox... mark as important, otherwise it becomes black */ } -/** - * Just uncomment the following block if you want to avoid spaces between - * paragraphs. Remember to apply the same style in your output front end page. - */ +/* + Just uncomment the following block if you want to avoid spaces between + paragraphs. Remember to apply the same style in your output front end page. +*/ /* p, ul, li @@ -63,30 +62,12 @@ p, ul, li } */ -/** - * Uncomment the following block, or only selected lines if appropriate, - * if you have some style items that would break the styles combo box. - * You can also write other CSS overrides inside the style block below - * as needed and they will be applied to inside the style combo only. - */ - /* -.SC_Item *, .SC_ItemSelected * -{ - margin: 0px !important; - padding: 0px !important; - text-indent: 0px !important; - clip: auto !important; - position: static !important; -} + The following are some sample styles used in the "Styles" toolbar command. + You should instead remove them, and include the styles used by the site + you are using the editor in. */ -/** - * The following are some sample styles used in the "Styles" toolbar command. - * You should instead remove them, and include the styles used by the site - * you are using the editor in. - */ - .Bold { font-weight: bold; @@ -107,4 +88,4 @@ p, ul, li color: #000066; font-family: 'Courier New' , Monospace; background-color: #ff9933; -} +} \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/css/fck_internal.css b/httemplate/elements/fckeditor/editor/css/fck_internal.css index d92c75e04..e6865602c 100644 --- a/httemplate/elements/fckeditor/editor/css/fck_internal.css +++ b/httemplate/elements/fckeditor/editor/css/fck_internal.css @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -21,20 +21,14 @@ * This CSS Style Sheet defines rules used by the editor for its internal use. */ -/* ######### - * WARNING - * ######### - * When changing this file, the minified version of it must be updated in the - * fckeditor.html file (see FCK_InternalCSS). - */ - -/* Fix to allow putting the caret at the end of the content in Firefox if - clicking below the content. */ +/* Fix to allow putting the caret at the end of the +content in Firefox if clicking below the content */ html { min-height: 100%; } + table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th { border: #d3d3d3 1px solid; @@ -56,16 +50,6 @@ form height: 80px; } -.FCK__UnknownObject -{ - border: #a9a9a9 1px solid; - background-position: center center; - background-image: url(images/fck_plugin.gif); - background-repeat: no-repeat; - width: 80px; - height: 80px; -} - /* Empty anchors images */ .FCK__Anchor { @@ -88,7 +72,8 @@ form padding-left: 18px; } -/* Any anchor for non-IE, if we combine it with the previous rule IE ignores all. */ +/* Any anchor for non-IE, if we combine it + with the previous rule IE ignores all. */ a[name] { border: 1px dotted #00F; @@ -124,76 +109,3 @@ a[name] vertical-align: text-bottom; background-position: center center; } - -.FCK__ShowBlocks p, -.FCK__ShowBlocks div, -.FCK__ShowBlocks pre, -.FCK__ShowBlocks address, -.FCK__ShowBlocks blockquote, -.FCK__ShowBlocks h1, -.FCK__ShowBlocks h2, -.FCK__ShowBlocks h3, -.FCK__ShowBlocks h4, -.FCK__ShowBlocks h5, -.FCK__ShowBlocks h6 -{ - background-repeat: no-repeat; - border: 1px dotted gray; - padding-top: 8px; - padding-left: 8px; -} - -.FCK__ShowBlocks p -{ - background-image: url(images/block_p.png); -} - -.FCK__ShowBlocks div -{ - background-image: url(images/block_div.png); -} - -.FCK__ShowBlocks pre -{ - background-image: url(images/block_pre.png); -} - -.FCK__ShowBlocks address -{ - background-image: url(images/block_address.png); -} - -.FCK__ShowBlocks blockquote -{ - background-image: url(images/block_blockquote.png); -} - -.FCK__ShowBlocks h1 -{ - background-image: url(images/block_h1.png); -} - -.FCK__ShowBlocks h2 -{ - background-image: url(images/block_h2.png); -} - -.FCK__ShowBlocks h3 -{ - background-image: url(images/block_h3.png); -} - -.FCK__ShowBlocks h4 -{ - background-image: url(images/block_h4.png); -} - -.FCK__ShowBlocks h5 -{ - background-image: url(images/block_h5.png); -} - -.FCK__ShowBlocks h6 -{ - background-image: url(images/block_h6.png); -} diff --git a/httemplate/elements/fckeditor/editor/css/fck_showtableborders_gecko.css b/httemplate/elements/fckeditor/editor/css/fck_showtableborders_gecko.css index 333161f8d..5947114c9 100644 --- a/httemplate/elements/fckeditor/editor/css/fck_showtableborders_gecko.css +++ b/httemplate/elements/fckeditor/editor/css/fck_showtableborders_gecko.css @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -21,13 +21,6 @@ * This CSS Style Sheet defines the rules to show table borders on Gecko. */ -/* ######### - * WARNING - * ######### - * When changing this file, the minified version of it must be updated in the - * fckeditor.html file (see FCK_ShowTableBordersCSS). - */ - /* For tables with the "border" attribute set to "0" */ table[border="0"], table[border="0"] > tr > td, table[border="0"] > tr > th, diff --git a/httemplate/elements/fckeditor/editor/css/images/block_address.png b/httemplate/elements/fckeditor/editor/css/images/block_address.png deleted file mode 100644 index 8bbae6e5a..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_address.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_blockquote.png b/httemplate/elements/fckeditor/editor/css/images/block_blockquote.png deleted file mode 100644 index cf065ba6b..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_blockquote.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_div.png b/httemplate/elements/fckeditor/editor/css/images/block_div.png deleted file mode 100644 index a2806b140..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_div.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_h1.png b/httemplate/elements/fckeditor/editor/css/images/block_h1.png deleted file mode 100644 index d43fbdbc0..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_h1.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_h2.png b/httemplate/elements/fckeditor/editor/css/images/block_h2.png deleted file mode 100644 index 27b547554..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_h2.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_h3.png b/httemplate/elements/fckeditor/editor/css/images/block_h3.png deleted file mode 100644 index 3c3034faf..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_h3.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_h4.png b/httemplate/elements/fckeditor/editor/css/images/block_h4.png deleted file mode 100644 index ab3f64de6..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_h4.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_h5.png b/httemplate/elements/fckeditor/editor/css/images/block_h5.png deleted file mode 100644 index 93477d083..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_h5.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_h6.png b/httemplate/elements/fckeditor/editor/css/images/block_h6.png deleted file mode 100644 index 11ea1c2ba..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_h6.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_p.png b/httemplate/elements/fckeditor/editor/css/images/block_p.png deleted file mode 100644 index d055c514a..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_p.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/block_pre.png b/httemplate/elements/fckeditor/editor/css/images/block_pre.png deleted file mode 100644 index be8ad26a7..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/block_pre.png and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/css/images/fck_plugin.gif b/httemplate/elements/fckeditor/editor/css/images/fck_plugin.gif deleted file mode 100644 index 7d5846345..000000000 Binary files a/httemplate/elements/fckeditor/editor/css/images/fck_plugin.gif and /dev/null differ diff --git a/httemplate/elements/fckeditor/editor/dialog/common/fck_dialog_common.css b/httemplate/elements/fckeditor/editor/dialog/common/fck_dialog_common.css index 1119e44c8..c1db11468 100644 --- a/httemplate/elements/fckeditor/editor/dialog/common/fck_dialog_common.css +++ b/httemplate/elements/fckeditor/editor/dialog/common/fck_dialog_common.css @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -22,13 +22,6 @@ * windows. */ -/* ######### - * WARNING - * ######### - * When changing this file, the minified version of it must be updated in the - * fck_dialog_common.js file (see GetCommonDialogCss). - */ - .ImagePreviewArea { border: #000000 1px solid; @@ -83,3 +76,8 @@ cursor: pointer; cursor: hand; } + +.FCK__FieldNumeric +{ + behavior: url(common/fcknumericfield.htc) ; +} \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/dialog/common/fck_dialog_common.js b/httemplate/elements/fckeditor/editor/dialog/common/fck_dialog_common.js index 478d3d52e..26b562806 100644 --- a/httemplate/elements/fckeditor/editor/dialog/common/fck_dialog_common.js +++ b/httemplate/elements/fckeditor/editor/dialog/common/fck_dialog_common.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -19,47 +19,9 @@ * == END LICENSE == * * Useful functions used by almost all dialog window pages. - * Dialogs should link to this file as the very first script on the page. */ -// Automatically detect the correct document.domain (#123). -(function() -{ - var d = document.domain ; - - while ( true ) - { - // Test if we can access a parent property. - try - { - var test = window.parent.document.domain ; - break ; - } - catch( e ) {} - - // Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ... - d = d.replace( /.*?(?:\.|$)/, '' ) ; - - if ( d.length == 0 ) - break ; // It was not able to detect the domain. - - try - { - document.domain = d ; - } - catch (e) - { - break ; - } - } -})() ; - -// Attention: FCKConfig must be available in the page. -function GetCommonDialogCss( prefix ) -{ - // CSS minified by http://iceyboard.no-ip.org/projects/css_compressor (see _dev/css_compression.txt). - return FCKConfig.BasePath + 'dialog/common/' + '|.ImagePreviewArea{border:#000 1px solid;overflow:auto;width:100%;height:170px;background-color:#fff}.FlashPreviewArea{border:#000 1px solid;padding:5px;overflow:auto;width:100%;height:170px;background-color:#fff}.BtnReset{float:left;background-position:center center;background-image:url(images/reset.gif);width:16px;height:16px;background-repeat:no-repeat;border:1px none;font-size:1px}.BtnLocked,.BtnUnlocked{float:left;background-position:center center;background-image:url(images/locked.gif);width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.BtnUnlocked{background-image:url(images/unlocked.gif)}.BtnOver{border:outset 1px;cursor:pointer;cursor:hand}' ; -} +var GECKO_BOGUS = '
' ; // Gets a element by its Id. Used for shorter coding. function GetE( elementId ) @@ -97,47 +59,21 @@ function GetAttribute( element, attName, valueIfNull ) return ( oValue == null ? valueIfNull : oValue ) ; } -function SelectField( elementId ) +// Functions used by text fiels to accept numbers only. +function IsDigit( e ) { - var element = GetE( elementId ) ; - element.focus() ; + if ( !e ) + e = event ; - // element.select may not be available for some fields (like - - -   - - Stylesheet Classes
- - - - - - - - diff --git a/httemplate/elements/fckeditor/editor/dialog/fck_docprops.html b/httemplate/elements/fckeditor/editor/dialog/fck_docprops.html index 935580de9..308346631 100644 --- a/httemplate/elements/fckeditor/editor/dialog/fck_docprops.html +++ b/httemplate/elements/fckeditor/editor/dialog/fck_docprops.html @@ -1,7 +1,7 @@ - + - - + + - - + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + +
+   +
+   +
diff --git a/httemplate/elements/fckeditor/editor/dialog/fck_scayt.html b/httemplate/elements/fckeditor/editor/dialog/fck_scayt.html deleted file mode 100644 index f8ef9b43f..000000000 --- a/httemplate/elements/fckeditor/editor/dialog/fck_scayt.html +++ /dev/null @@ -1,746 +0,0 @@ - - - - - SCAYT Properties - - - - - - - -
- -
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
-
-
- -
-
-
-
- -
-
-
- - -
-
- - - - -
- -
- -
-
-
-
-
- - diff --git a/httemplate/elements/fckeditor/editor/dialog/fck_scayt/scayt_dialog.css b/httemplate/elements/fckeditor/editor/dialog/fck_scayt/scayt_dialog.css deleted file mode 100644 index c2eeb75f9..000000000 --- a/httemplate/elements/fckeditor/editor/dialog/fck_scayt/scayt_dialog.css +++ /dev/null @@ -1,169 +0,0 @@ -html, body -{ - background-color: transparent; - margin: 0px; - padding: 0px; -} - -body -{ - padding: 10px; -} - -body, td, input, select, textarea -{ - font-size: 11px; - font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; -} - -.midtext -{ - padding:0px; - margin:10px; -} - -.midtext p -{ - padding:0px; - margin:10px; -} - -.Button -{ - border: #737357 1px solid; - color: #3b3b1f; - background-color: #c7c78f; -} - -.PopupTabArea , .button -{ - color: #737357; - background-color: #e3e3c7; -} - -.PopupTitleBorder -{ - border-bottom: #d5d59d 1px solid; -} -.PopupTabEmptyArea -{ - padding-left: 10px; - border-bottom: #d5d59d 1px solid; -} - -.PopupTab, .PopupTabSelected -{ - border-right: #d5d59d 1px solid; - border-top: #d5d59d 1px solid; - border-left: #d5d59d 1px solid; - padding: 3px 5px 3px 5px; - color: #737357; -} - -.PopupTab -{ - margin-top: 1px; - border-bottom: #d5d59d 1px solid; - cursor: pointer; - cursor: hand; -} - -.PopupTabSelected -{ - font-weight: bold; - cursor: default; - padding-top: 4px; - border-bottom: #f1f1e3 1px solid; - background-color: #f1f1e3; -} - -ul { - padding:0; - margin:0px 0px 12px 0px; - list-style-type:none; -} -ul.tabs { - height:20px; - margin:10px 0px; -} -ul.tabs li { - float: left; - display:none; -} -div.tab_container { - /*display:none;*/ - padding: 0px 5px ; -} -.lcol { - float:left; - width:47%; - margin-left:5px; -} -.rcol { - float:right; - width:47%; - margin-right:5px; -} -div.tabs-container{ - height:220px; - overflow-x:hidden; - overflow-y:auto; -} - -div.tabs-container h3{ - margin:5px 15px 7px 15px; - background-color:transparent; - font-size: 14px ; -} - -.li { - border: 1px solid transparent; -} - -#dic_message{ - height: 24px; -} -#dic_message .error{ - color: red ; -} -#dic_message .success{ - color: blue ; -} - -.dic_buttons { - margin-top: 5px; - padding-left:10px; -} -.dic_buttons a { - display: none; -} -a.button { - border: #d5d59d 1px solid; - padding: 2px 4px; - margin-right: 4px; - text-decoration: none; -} - -a.button:hover, -a.button:active, -a.button:visited{ - padding: 2px 4px; - margin-right: 4px; - text-decoration: none; -} -a.button:hover { - border: #d5d59d 1px solid; - color: #e3e3c7; - background-color: #737357; -} - -#scayt_options li { - display: none; -} - -#dic_info { - margin:10px; -} -#dic_tab { - display:none; -} diff --git a/httemplate/elements/fckeditor/editor/dialog/fck_select.html b/httemplate/elements/fckeditor/editor/dialog/fck_select.html index 2f28da6b3..cb48b5070 100644 --- a/httemplate/elements/fckeditor/editor/dialog/fck_select.html +++ b/httemplate/elements/fckeditor/editor/dialog/fck_select.html @@ -1,7 +1,7 @@ - - -
- ');return D.join('');}; -var FCKToolbarFontFormatCombo=function(A,B){if (A===false) return;this.CommandName='FontFormat';this.Label=this.GetLabel();this.Tooltip=A?A:this.Label;this.Style=B?B:2;this.NormalLabel='Normal';this.PanelWidth=190;this.DefaultLabel=FCKConfig.DefaultFontFormatLabel||'';};FCKToolbarFontFormatCombo.prototype=new FCKToolbarStyleCombo(false);FCKToolbarFontFormatCombo.prototype.GetLabel=function(){return FCKLang.FontFormat;};FCKToolbarFontFormatCombo.prototype.GetStyles=function(){var A={};var B=FCKLang['FontFormats'].split(';');var C={p:B[0],pre:B[1],address:B[2],h1:B[3],h2:B[4],h3:B[5],h4:B[6],h5:B[7],h6:B[8],div:B[9]||(B[0]+' (DIV)')};var D=FCKConfig.FontFormats.split(';');for (var i=0;iEnable SCAYT';return C?'Disable SCAYT':'Enable SCAYT';};var Z=function(tooltip,style){this.Command=FCKCommands.GetCommand('Scayt');this.CommandName='Scayt';this.Label=this.GetLabel();this.Tooltip=FCKLang.ScaytTitle;this.Style=1;};Z.prototype=new FCKToolbarSpecialCombo;Z.prototype.CreateItems=function(){this._Combo.AddItem('Trigger','Enable SCAYT');this._Combo.AddItem('Options',FCKLang.ScaytTitleOptions||"Options");this._Combo.AddItem('Langs',FCKLang.ScaytTitleLangs||"Languages");this._Combo.AddItem('About',FCKLang.ScaytTitleAbout||"About");};Z.prototype.GetLabel=function(){var a=FCKConfig.SkinPath+'fck_strip.gif';return FCKBrowserInfo.IsIE?'
':'';};function ScaytMessage(m){m&&alert(m);};var b=function(){name='ScaytContext';};b.prototype.Execute=function(contextInfo){var c=contextInfo&&contextInfo.action,g=c&&contextInfo.node,Q=window.scayt_control;if (g){switch (c){case 'Suggestion':Q.replace(g,contextInfo.suggestion);break;case 'Ignore':Q.ignore(g);break;case 'Ignore All':Q.ignoreAll(g);break;case 'Add Word':var E=FCK.EditorWindow.parent.parent;E.scayt.addWordToUserDictionary(g);break;}}};function InitSetup(){FCK.ContextMenu.RegisterListener({AddItems:function(menu){var E=FCK.EditorWindow.parent.parent;var Q=window.scayt_control,P=E.scayt;if (!Q) return;var g=Q.getScaytNode();if (!g) return;var h=P.getSuggestion(Q.getWord(g),Q.getLang());if (!h||!h.length) return;menu.AddSeparator();var j=FCK.Config.ScaytMaxSuggestions||5;var k=(j==-1)?h.length:j;for (var i=0;i';G.open();G.write(''+H+''+document.getElementById('xToolbarSpace').innerHTML+'');G.close();if(FCKBrowserInfo.IsAIR) FCKAdobeAIR.ToolbarSet_InitOutFrame(G);FCKTools.AddEventListener(G,'contextmenu',FCKTools.CancelEvent);FCKTools.AppendStyleSheet(G,FCKConfig.SkinEditorCSS);B=D.__FCKToolbarSet=new FCKToolbarSet(G);B._IFrame=F;if (FCK.IECleanup) FCK.IECleanup.AddItem(D,FCKToolbarSet_Target_Cleanup);};B.CurrentInstance=FCK;if (!B.ToolbarItems) B.ToolbarItems=FCKToolbarItems;FCK.AttachToOnSelectionChange(B.RefreshItemsState);return B;};function FCK_OnBlur(A){var B=A.ToolbarSet;if (B.CurrentInstance==A) B.Disable();};function FCK_OnFocus(A){var B=A.ToolbarSet;var C=A||FCK;B.CurrentInstance.FocusManager.RemoveWindow(B._IFrame.contentWindow);B.CurrentInstance=C;C.FocusManager.AddWindow(B._IFrame.contentWindow,true);B.Enable();};function FCKToolbarSet_Cleanup(){this._TargetElement=null;this._IFrame=null;};function FCKToolbarSet_Target_Cleanup(){this.__FCKToolbarSet=null;};var FCKToolbarSet=function(A){this._Document=A;this._TargetElement=A.getElementById('xToolbar');var B=A.getElementById('xExpandHandle');var C=A.getElementById('xCollapseHandle');B.title=FCKLang.ToolbarExpand;FCKTools.AddEventListener(B,'click',FCKToolbarSet_Expand_OnClick);C.title=FCKLang.ToolbarCollapse;FCKTools.AddEventListener(C,'click',FCKToolbarSet_Collapse_OnClick);if (!FCKConfig.ToolbarCanCollapse||FCKConfig.ToolbarStartExpanded) this.Expand();else this.Collapse();C.style.display=FCKConfig.ToolbarCanCollapse?'':'none';if (FCKConfig.ToolbarCanCollapse) C.style.display='';else A.getElementById('xTBLeftBorder').style.display='';this.Toolbars=[];this.IsLoaded=false;if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKToolbarSet_Cleanup);};function FCKToolbarSet_Expand_OnClick(){FCK.ToolbarSet.Expand();};function FCKToolbarSet_Collapse_OnClick(){FCK.ToolbarSet.Collapse();};FCKToolbarSet.prototype.Expand=function(){this._ChangeVisibility(false);};FCKToolbarSet.prototype.Collapse=function(){this._ChangeVisibility(true);};FCKToolbarSet.prototype._ChangeVisibility=function(A){this._Document.getElementById('xCollapsed').style.display=A?'':'none';this._Document.getElementById('xExpanded').style.display=A?'none':'';if (window.onresize){FCKTools.RunFunction(window.onresize);}};FCKToolbarSet.prototype.Load=function(A){this.Name=A;this.Items=[];this.ItemsWysiwygOnly=[];this.ItemsContextSensitive=[];this._TargetElement.innerHTML='';var B=FCKConfig.ToolbarSets[A];if (!B){alert(FCKLang.UnknownToolbarSet.replace(/%1/g,A));return;};this.Toolbars=[];for (var x=0;x0) break;}catch (e){break;};D=D.parent;};var E=D.document;var F=function(){if (!B) B=FCKConfig.FloatingPanelsZIndex+999;return++B;};var G=function(){if (!C) return;var H=FCKTools.IsStrictMode(E)?E.documentElement:E.body;FCKDomTools.SetElementStyles(C,{'width':Math.max(H.scrollWidth,H.clientWidth,E.scrollWidth||0)-1+'px','height':Math.max(H.scrollHeight,H.clientHeight,E.scrollHeight||0)-1+'px'});};return {OpenDialog:function(dialogName,dialogTitle,dialogPage,width,height,customValue,resizable){if (!A) this.DisplayMainCover();var I={Title:dialogTitle,Page:dialogPage,Editor:window,CustomValue:customValue,TopWindow:D};FCK.ToolbarSet.CurrentInstance.Selection.Save(true);var J=FCKTools.GetViewPaneSize(D);var K={ 'X':0,'Y':0 };var L=FCKBrowserInfo.IsIE&&(!FCKBrowserInfo.IsIE7||!FCKTools.IsStrictMode(D.document));if (L) K=FCKTools.GetScrollPosition(D);var M=Math.max(K.Y+(J.Height-height-20)/2,0);var N=Math.max(K.X+(J.Width-width-20)/2,0);var O=E.createElement('iframe');FCKTools.ResetStyles(O);O.src=FCKConfig.BasePath+'fckdialog.html';O.frameBorder=0;O.allowTransparency=true;FCKDomTools.SetElementStyles(O,{'position':(L)?'absolute':'fixed','top':M+'px','left':N+'px','width':width+'px','height':height+'px','zIndex':F()});O._DialogArguments=I;E.body.appendChild(O);O._ParentDialog=A;A=O;},OnDialogClose:function(dialogWindow){var O=dialogWindow.frameElement;FCKDomTools.RemoveNode(O);if (O._ParentDialog){A=O._ParentDialog;O._ParentDialog.contentWindow.SetEnabled(true);}else{if (!FCKBrowserInfo.IsIE) FCK.Focus();this.HideMainCover();setTimeout(function(){ A=null;},0);FCK.ToolbarSet.CurrentInstance.Selection.Release();}},DisplayMainCover:function(){C=E.createElement('div');FCKTools.ResetStyles(C);FCKDomTools.SetElementStyles(C,{'position':'absolute','zIndex':F(),'top':'0px','left':'0px','backgroundColor':FCKConfig.BackgroundBlockerColor});FCKDomTools.SetOpacity(C,FCKConfig.BackgroundBlockerOpacity);if (FCKBrowserInfo.IsIE&&!FCKBrowserInfo.IsIE7){var Q=E.createElement('iframe');FCKTools.ResetStyles(Q);Q.hideFocus=true;Q.frameBorder=0;Q.src=FCKTools.GetVoidUrl();FCKDomTools.SetElementStyles(Q,{'width':'100%','height':'100%','position':'absolute','left':'0px','top':'0px','filter':'progid:DXImageTransform.Microsoft.Alpha(opacity=0)'});C.appendChild(Q);};FCKTools.AddEventListener(D,'resize',G);G();E.body.appendChild(C);FCKFocusManager.Lock();var R=FCK.ToolbarSet.CurrentInstance.GetInstanceObject('frameElement');R._fck_originalTabIndex=R.tabIndex;R.tabIndex=-1;},HideMainCover:function(){FCKDomTools.RemoveNode(C);FCKFocusManager.Unlock();var R=FCK.ToolbarSet.CurrentInstance.GetInstanceObject('frameElement');R.tabIndex=R._fck_originalTabIndex;FCKDomTools.ClearElementJSProperty(R,'_fck_originalTabIndex');},GetCover:function(){return C;}};})(); -var FCKMenuItem=function(A,B,C,D,E,F){this.Name=B;this.Label=C||B;this.IsDisabled=E;this.Icon=new FCKIcon(D);this.SubMenu=new FCKMenuBlockPanel();this.SubMenu.Parent=A;this.SubMenu.OnClick=FCKTools.CreateEventListener(FCKMenuItem_SubMenu_OnClick,this);this.CustomData=F;if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKMenuItem_Cleanup);};FCKMenuItem.prototype.AddItem=function(A,B,C,D,E){this.HasSubMenu=true;return this.SubMenu.AddItem(A,B,C,D,E);};FCKMenuItem.prototype.AddSeparator=function(){this.SubMenu.AddSeparator();};FCKMenuItem.prototype.Create=function(A){var B=this.HasSubMenu;var C=FCKTools.GetElementDocument(A);var r=this.MainElement=A.insertRow(-1);r.className=this.IsDisabled?'MN_Item_Disabled':'MN_Item';if (!this.IsDisabled){FCKTools.AddEventListenerEx(r,'mouseover',FCKMenuItem_OnMouseOver,[this]);FCKTools.AddEventListenerEx(r,'click',FCKMenuItem_OnClick,[this]);if (!B) FCKTools.AddEventListenerEx(r,'mouseout',FCKMenuItem_OnMouseOut,[this]);};var D=r.insertCell(-1);D.className='MN_Icon';D.appendChild(this.Icon.CreateIconElement(C));D=r.insertCell(-1);D.className='MN_Label';D.noWrap=true;D.appendChild(C.createTextNode(this.Label));D=r.insertCell(-1);if (B){D.className='MN_Arrow';var E=D.appendChild(C.createElement('IMG'));E.src=FCK_IMAGES_PATH+'arrow_'+FCKLang.Dir+'.gif';E.width=4;E.height=7;this.SubMenu.Create();this.SubMenu.Panel.OnHide=FCKTools.CreateEventListener(FCKMenuItem_SubMenu_OnHide,this);}};FCKMenuItem.prototype.Activate=function(){this.MainElement.className='MN_Item_Over';if (this.HasSubMenu){this.SubMenu.Show(this.MainElement.offsetWidth+2,-2,this.MainElement);};FCKTools.RunFunction(this.OnActivate,this);};FCKMenuItem.prototype.Deactivate=function(){this.MainElement.className='MN_Item';if (this.HasSubMenu) this.SubMenu.Hide();};function FCKMenuItem_SubMenu_OnClick(A,B){FCKTools.RunFunction(B.OnClick,B,[A]);};function FCKMenuItem_SubMenu_OnHide(A){A.Deactivate();};function FCKMenuItem_OnClick(A,B){if (B.HasSubMenu) B.Activate();else{B.Deactivate();FCKTools.RunFunction(B.OnClick,B,[B]);}};function FCKMenuItem_OnMouseOver(A,B){B.Activate();};function FCKMenuItem_OnMouseOut(A,B){B.Deactivate();};function FCKMenuItem_Cleanup(){this.MainElement=null;}; -var FCKMenuBlock=function(){this._Items=[];};FCKMenuBlock.prototype.Count=function(){return this._Items.length;};FCKMenuBlock.prototype.AddItem=function(A,B,C,D,E){var F=new FCKMenuItem(this,A,B,C,D,E);F.OnClick=FCKTools.CreateEventListener(FCKMenuBlock_Item_OnClick,this);F.OnActivate=FCKTools.CreateEventListener(FCKMenuBlock_Item_OnActivate,this);this._Items.push(F);return F;};FCKMenuBlock.prototype.AddSeparator=function(){this._Items.push(new FCKMenuSeparator());};FCKMenuBlock.prototype.RemoveAllItems=function(){this._Items=[];var A=this._ItemsTable;if (A){while (A.rows.length>0) A.deleteRow(0);}};FCKMenuBlock.prototype.Create=function(A){if (!this._ItemsTable){if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKMenuBlock_Cleanup);this._Window=FCKTools.GetElementWindow(A);var B=FCKTools.GetElementDocument(A);var C=A.appendChild(B.createElement('table'));C.cellPadding=0;C.cellSpacing=0;FCKTools.DisableSelection(C);var D=C.insertRow(-1).insertCell(-1);D.className='MN_Menu';var E=this._ItemsTable=D.appendChild(B.createElement('table'));E.cellPadding=0;E.cellSpacing=0;};for (var i=0;i0&&F.href.length==0);if (G) return;menu.AddSeparator();menu.AddItem('VisitLink',FCKLang.VisitLink);menu.AddSeparator();if (E) menu.AddItem('Link',FCKLang.EditLink,34);menu.AddItem('Unlink',FCKLang.RemoveLink,35);}}};case 'Image':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&!tag.getAttribute('_fckfakelement')){menu.AddSeparator();menu.AddItem('Image',FCKLang.ImageProperties,37);}}};case 'Anchor':return {AddItems:function(menu,tag,tagName){var F=FCKSelection.MoveToAncestorNode('A');var G=(F&&F.name.length>0);if (G||(tagName=='IMG'&&tag.getAttribute('_fckanchor'))){menu.AddSeparator();menu.AddItem('Anchor',FCKLang.AnchorProp,36);menu.AddItem('AnchorDelete',FCKLang.AnchorDelete);}}};case 'Flash':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&tag.getAttribute('_fckflash')){menu.AddSeparator();menu.AddItem('Flash',FCKLang.FlashProperties,38);}}};case 'Form':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('FORM')){menu.AddSeparator();menu.AddItem('Form',FCKLang.FormProp,48);}}};case 'Checkbox':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='checkbox'){menu.AddSeparator();menu.AddItem('Checkbox',FCKLang.CheckboxProp,49);}}};case 'Radio':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='radio'){menu.AddSeparator();menu.AddItem('Radio',FCKLang.RadioButtonProp,50);}}};case 'TextField':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&(tag.type=='text'||tag.type=='password')){menu.AddSeparator();menu.AddItem('TextField',FCKLang.TextFieldProp,51);}}};case 'HiddenField':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&tag.getAttribute('_fckinputhidden')){menu.AddSeparator();menu.AddItem('HiddenField',FCKLang.HiddenFieldProp,56);}}};case 'ImageButton':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='image'){menu.AddSeparator();menu.AddItem('ImageButton',FCKLang.ImageButtonProp,55);}}};case 'Button':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&(tag.type=='button'||tag.type=='submit'||tag.type=='reset')){menu.AddSeparator();menu.AddItem('Button',FCKLang.ButtonProp,54);}}};case 'Select':return {AddItems:function(menu,tag,tagName){if (tagName=='SELECT'){menu.AddSeparator();menu.AddItem('Select',FCKLang.SelectionFieldProp,53);}}};case 'Textarea':return {AddItems:function(menu,tag,tagName){if (tagName=='TEXTAREA'){menu.AddSeparator();menu.AddItem('Textarea',FCKLang.TextareaProp,52);}}};case 'BulletedList':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('UL')){menu.AddSeparator();menu.AddItem('BulletedList',FCKLang.BulletedListProp,27);}}};case 'NumberedList':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('OL')){menu.AddSeparator();menu.AddItem('NumberedList',FCKLang.NumberedListProp,26);}}};case 'DivContainer':return {AddItems:function(menu,tag,tagName){var J=FCKDomTools.GetSelectedDivContainers();if (J.length>0){menu.AddSeparator();menu.AddItem('EditDiv',FCKLang.EditDiv,75);menu.AddItem('DeleteDiv',FCKLang.DeleteDiv,76);}}};};return null;};function FCK_ContextMenu_OnBeforeOpen(){FCK.Events.FireEvent('OnSelectionChange');var A,sTagName;if ((A=FCKSelection.GetSelectedElement())) sTagName=A.tagName;var B=FCK.ContextMenu._InnerContextMenu;B.RemoveAllItems();var C=FCK.ContextMenu.Listeners;for (var i=0;i0){D=A.substr(0,B.index);this._sourceHtml=A.substr(B.index);}else{C=true;D=B[0];this._sourceHtml=A.substr(B[0].length);}}else{D=A;this._sourceHtml=null;};return { 'isTag':C,'value':D };},Each:function(A){var B;while ((B=this.Next())) A(B.isTag,B.value);}};var FCKHtmlIterator=function(A){this._sourceHtml=A;};FCKHtmlIterator.prototype={Next:function(){var A=this._sourceHtml;if (A==null) return null;var B=FCKRegexLib.HtmlTag.exec(A);var C=false;var D="";if (B){if (B.index>0){D=A.substr(0,B.index);this._sourceHtml=A.substr(B.index);}else{C=true;D=B[0];this._sourceHtml=A.substr(B[0].length);}}else{D=A;this._sourceHtml=null;};return { 'isTag':C,'value':D };},Each:function(A){var B;while ((B=this.Next())) A(B.isTag,B.value);}}; -var FCKPlugin=function(A,B,C){this.Name=A;this.BasePath=C?C:FCKConfig.PluginsPath;this.Path=this.BasePath+A+'/';if (!B||B.length==0) this.AvailableLangs=[];else this.AvailableLangs=B.split(',');};FCKPlugin.prototype.Load=function(){if (this.AvailableLangs.length>0){var A;if (this.AvailableLangs.IndexOf(FCKLanguageManager.ActiveLanguage.Code)>=0) A=FCKLanguageManager.ActiveLanguage.Code;else A=this.AvailableLangs[0];LoadScript(this.Path+'lang/'+A+'.js');};LoadScript(this.Path+'fckplugin.js');}; -var FCKPlugins=FCK.Plugins={};FCKPlugins.ItemsCount=0;FCKPlugins.Items={};FCKPlugins.Load=function(){var A=FCKPlugins.Items;for (var i=0;i0){if (F>D.childNodes.length-1){D=FCKDomTools.InsertAfterNode(D.lastChild,this._Document.createTextNode(''));H=true;}else D=D.childNodes[F];}};if (C.nodeType==3){C.splitText(E);if (C==D) D=C.nextSibling;}else{if (C.childNodes.length>0&&E<=C.childNodes.length-1){if (E==0){C=C.insertBefore(this._Document.createTextNode(''),C.firstChild);G=true;}else C=C.childNodes[E].previousSibling;}};var I=FCKDomTools.GetParents(C);var J=FCKDomTools.GetParents(D);var i,topStart,topEnd;for (i=0;i0&&levelStartNode!=D) levelClone=K.appendChild(levelStartNode.cloneNode(levelStartNode==D));if (!I[k]||levelStartNode.parentNode!=I[k].parentNode){currentNode=levelStartNode.previousSibling;while(currentNode){if (currentNode==I[k]||currentNode==C) break;currentSibling=currentNode.previousSibling;if (A==2) K.insertBefore(currentNode.cloneNode(true),K.firstChild);else{currentNode.parentNode.removeChild(currentNode);if (A==1) K.insertBefore(currentNode,K.firstChild);};currentNode=currentSibling;}};if (K) K=levelClone;};if (A==2){var L=this.startContainer;if (L.nodeType==3){L.data+=L.nextSibling.data;L.parentNode.removeChild(L.nextSibling);};var M=this.endContainer;if (M.nodeType==3&&M.nextSibling){M.data+=M.nextSibling.data;M.parentNode.removeChild(M.nextSibling);}}else{if (topStart&&topEnd&&(C.parentNode!=topStart.parentNode||D.parentNode!=topEnd.parentNode)) this.setStart(topEnd.parentNode,FCKDomTools.GetIndexOf(topEnd));this.collapse(true);};if(G) C.parentNode.removeChild(C);if(H&&D.parentNode) D.parentNode.removeChild(D);},cloneRange:function(){return FCKW3CRange.CreateFromRange(this._Document,this);},toString:function(){var A=this.cloneContents();var B=this._Document.createElement('div');A.AppendTo(B);return B.textContent||B.innerText;}}; +var FCKEnterKey=function(A,B,C){this.Window=A;this.EnterMode=B||'p';this.ShiftEnterMode=C||'br';var D=new FCKKeystrokeHandler(false);D._EnterKey=this;D.OnKeystroke=FCKEnterKey_OnKeystroke;D.SetKeystrokes([[13,'Enter'],[SHIFT+13,'ShiftEnter'],[8,'Backspace'],[46,'Delete']]);D.AttachToElement(A.document);};function FCKEnterKey_OnKeystroke(A,B){var C=this._EnterKey;try{switch (B){case 'Enter':return C.DoEnter();break;case 'ShiftEnter':return C.DoShiftEnter();break;case 'Backspace':return C.DoBackspace();break;case 'Delete':return C.DoDelete();}}catch (e){};return false;};FCKEnterKey.prototype.DoEnter=function(A,B){this._HasShift=(B===true);var C=A||this.EnterMode;if (C=='br') return this._ExecuteEnterBr();else return this._ExecuteEnterBlock(C);};FCKEnterKey.prototype.DoShiftEnter=function(){return this.DoEnter(this.ShiftEnterMode,true);};FCKEnterKey.prototype.DoBackspace=function(){var A=false;var B=new FCKDomRange(this.Window);B.MoveToSelection();if (!B.CheckIsCollapsed()) return false;var C=B.StartBlock;var D=B.EndBlock;if (B.StartBlockLimit==B.EndBlockLimit&&C&&D){if (!B.CheckIsCollapsed()){var E=B.CheckEndOfBlock();B.DeleteContents();if (C!=D){B.SetStart(D,1);B.SetEnd(D,1);};B.Select();A=(C==D);};if (B.CheckStartOfBlock()){var F=B.StartBlock;var G=FCKDomTools.GetPreviousSourceElement(F,true,['BODY',B.StartBlockLimit.nodeName],['UL','OL']);A=this._ExecuteBackspace(B,G,F);}else if (FCKBrowserInfo.IsGecko){B.Select();}};B.Release();return A;};FCKEnterKey.prototype._ExecuteBackspace=function(A,B,C){var D=false;if (!B&&C&&C.nodeName.IEquals('LI')&&C.parentNode.parentNode.nodeName.IEquals('LI')){this._OutdentWithSelection(C,A);return true;};if (B&&B.nodeName.IEquals('LI')){var E=FCKDomTools.GetLastChild(B,['UL','OL']);while (E){B=FCKDomTools.GetLastChild(E,'LI');E=FCKDomTools.GetLastChild(B,['UL','OL']);}};if (B&&C){if (C.nodeName.IEquals('LI')&&!B.nodeName.IEquals('LI')){this._OutdentWithSelection(C,A);return true;};var F=C.parentNode;var G=B.nodeName.toLowerCase();if (FCKListsLib.EmptyElements[G]!=null||G=='table'){FCKDomTools.RemoveNode(B);D=true;}else{FCKDomTools.RemoveNode(C);while (F.innerHTML.Trim().length==0){var H=F.parentNode;H.removeChild(F);F=H;};FCKDomTools.TrimNode(C);FCKDomTools.TrimNode(B);A.SetStart(B,2);A.Collapse(true);var I=A.CreateBookmark();FCKDomTools.MoveChildren(C,B);A.MoveToBookmark(I);A.Select();D=true;}};return D;};FCKEnterKey.prototype.DoDelete=function(){var A=false;var B=new FCKDomRange(this.Window);B.MoveToSelection();if (B.CheckIsCollapsed()&&B.CheckEndOfBlock(FCKBrowserInfo.IsGeckoLike)){var C=B.StartBlock;var D=FCKDomTools.GetNextSourceElement(C,true,[B.StartBlockLimit.nodeName],['UL','OL']);A=this._ExecuteBackspace(B,C,D);};B.Release();return A;};FCKEnterKey.prototype._ExecuteEnterBlock=function(A,B){var C=B||new FCKDomRange(this.Window);if (!B) C.MoveToSelection();if (C.StartBlockLimit==C.EndBlockLimit){if (!C.StartBlock) this._FixBlock(C,true,A);if (!C.EndBlock) this._FixBlock(C,false,A);var D=C.StartBlock;var E=C.EndBlock;if (!C.CheckIsEmpty()) C.DeleteContents();if (D==E){var F;var G=C.CheckStartOfBlock();var H=C.CheckEndOfBlock();if (G&&!H){F=D.cloneNode(false);if (FCKBrowserInfo.IsGeckoLike) F.innerHTML=GECKO_BOGUS;D.parentNode.insertBefore(F,D);if (FCKBrowserInfo.IsIE){C.MoveToNodeContents(F);C.Select();};C.MoveToElementEditStart(D);}else{if (H){var I=D.tagName.toUpperCase();if (G&&I=='LI'){this._OutdentWithSelection(D,C);C.Release();return true;}else{if ((/^H[1-6]$/).test(I)||this._HasShift) F=this.Window.document.createElement(A);else{F=D.cloneNode(false);this._RecreateEndingTree(D,F);};if (FCKBrowserInfo.IsGeckoLike){F.innerHTML=GECKO_BOGUS;if (G) D.innerHTML=GECKO_BOGUS;}}}else{C.SetEnd(D,2);var J=C.ExtractContents();F=D.cloneNode(false);FCKDomTools.TrimNode(J.RootNode);if (J.RootNode.firstChild.nodeType==1&&J.RootNode.firstChild.tagName.toUpperCase().Equals('UL','OL')) F.innerHTML=GECKO_BOGUS;J.AppendTo(F);if (FCKBrowserInfo.IsGecko){this._AppendBogusBr(D);this._AppendBogusBr(F);}};if (F){FCKDomTools.InsertAfterNode(D,F);C.MoveToElementEditStart(F);if (FCKBrowserInfo.IsGeckoLike) F.scrollIntoView(false);}}}else{C.MoveToElementEditStart(E);};C.Select();};C.Release();return true;};FCKEnterKey.prototype._ExecuteEnterBr=function(A){var B=new FCKDomRange(this.Window);B.MoveToSelection();if (B.StartBlockLimit==B.EndBlockLimit){B.DeleteContents();B.MoveToSelection();var C=B.CheckStartOfBlock();var D=B.CheckEndOfBlock();var E=B.StartBlock?B.StartBlock.tagName.toUpperCase():'';var F=this._HasShift;if (!F&&E=='LI') return this._ExecuteEnterBlock(null,B);if (!F&&D&&(/^H[1-6]$/).test(E)){FCKDebug.Output('BR - Header');FCKDomTools.InsertAfterNode(B.StartBlock,this.Window.document.createElement('br'));if (FCKBrowserInfo.IsGecko) FCKDomTools.InsertAfterNode(B.StartBlock,this.Window.document.createTextNode(''));B.SetStart(B.StartBlock.nextSibling,FCKBrowserInfo.IsIE?3:1);}else{FCKDebug.Output('BR - No Header');var G=this.Window.document.createElement('br');B.InsertNode(G);if (FCKBrowserInfo.IsGecko) FCKDomTools.InsertAfterNode(G,this.Window.document.createTextNode(''));if (D&&FCKBrowserInfo.IsGeckoLike) this._AppendBogusBr(G.parentNode);if (FCKBrowserInfo.IsIE) B.SetStart(G,4);else B.SetStart(G.nextSibling,1);};B.Collapse(true);B.Select();};B.Release();return true;};FCKEnterKey.prototype._FixBlock=function(A,B,C){var D=A.CreateBookmark();A.Collapse(B);A.Expand('block_contents');var E=this.Window.document.createElement(C);A.ExtractContents().AppendTo(E);FCKDomTools.TrimNode(E);A.InsertNode(E);A.MoveToBookmark(D);};FCKEnterKey.prototype._AppendBogusBr=function(A){if (!A) return;var B=FCKTools.GetLastItem(A.getElementsByTagName('br'));if (!B||B.getAttribute('type',2)!='_moz') A.appendChild(FCKTools.CreateBogusBR(this.Window.document));};FCKEnterKey.prototype._RecreateEndingTree=function(A,B){while ((A=A.lastChild)&&A.nodeType==1&&FCKListsLib.InlineChildReqElements[A.nodeName.toLowerCase()]!=null) B=B.insertBefore(A.cloneNode(false),B.firstChild);};FCKEnterKey.prototype._OutdentWithSelection=function(A,B){var C=B.CreateBookmark();FCKListHandler.OutdentListItem(A);B.MoveToBookmark(C);B.Select();} +var FCKDocumentProcessor={};FCKDocumentProcessor._Items=[];FCKDocumentProcessor.AppendNew=function(){var A={};this._Items.AddItem(A);return A;};FCKDocumentProcessor.Process=function(A){var B,i=0;while((B=this._Items[i++])) B.ProcessDocument(A);};var FCKDocumentProcessor_CreateFakeImage=function(A,B){var C=FCK.EditorDocument.createElement('IMG');C.className=A;C.src=FCKConfig.FullBasePath+'images/spacer.gif';C.setAttribute('_fckfakelement','true',0);C.setAttribute('_fckrealelement',FCKTempBin.AddElement(B),0);return C;};if (FCKBrowserInfo.IsIE||FCKBrowserInfo.IsOpera){var FCKAnchorsProcessor=FCKDocumentProcessor.AppendNew();FCKAnchorsProcessor.ProcessDocument=function(A){var B=A.getElementsByTagName('A');var C;var i=B.length-1;while (i>=0&&(C=B[i--])){if (C.name.length>0){if (C.innerHTML!==''){if (FCKBrowserInfo.IsIE) C.className+=' FCK__AnchorC';}else{var D=FCKDocumentProcessor_CreateFakeImage('FCK__Anchor',C.cloneNode(true));D.setAttribute('_fckanchor','true',0);C.parentNode.insertBefore(D,C);C.parentNode.removeChild(C);}}}}};var FCKPageBreaksProcessor=FCKDocumentProcessor.AppendNew();FCKPageBreaksProcessor.ProcessDocument=function(A){var B=A.getElementsByTagName('DIV');var C;var i=B.length-1;while (i>=0&&(C=B[i--])){if (C.style.pageBreakAfter=='always'&&C.childNodes.length==1&&C.childNodes[0].style&&C.childNodes[0].style.display=='none'){var D=FCKDocumentProcessor_CreateFakeImage('FCK__PageBreak',C.cloneNode(true));C.parentNode.insertBefore(D,C);C.parentNode.removeChild(C);}}};var FCKFlashProcessor=FCKDocumentProcessor.AppendNew();FCKFlashProcessor.ProcessDocument=function(A){var B=A.getElementsByTagName('EMBED');var C;var i=B.length-1;while (i>=0&&(C=B[i--])){var D=C.attributes['type'];if ((C.src&&C.src.EndsWith('.swf',true))||(D&&D.nodeValue=='application/x-shockwave-flash')){var E=C.cloneNode(true);if (FCKBrowserInfo.IsIE){var F=['scale','play','loop','menu','wmode','quality'];for (var G=0;G0) A.style.width=FCKTools.ConvertHtmlSizeToStyle(B.getAttribute('width'));if (B.getAttribute('height')>0) A.style.height=FCKTools.ConvertHtmlSizeToStyle(B.getAttribute('height'));};FCK.GetRealElement=function(A){var e=FCKTempBin.Elements[A.getAttribute('_fckrealelement')];if (A.getAttribute('_fckflash')){if (A.style.width.length>0) e.width=FCKTools.ConvertStyleSizeToHtml(A.style.width);if (A.style.height.length>0) e.height=FCKTools.ConvertStyleSizeToHtml(A.style.height);};return e;};if (FCKBrowserInfo.IsIE){FCKDocumentProcessor.AppendNew().ProcessDocument=function(A){var B=A.getElementsByTagName('HR');var C;var i=B.length-1;while (i>=0&&(C=B[i--])){var D=A.createElement('hr');D.mergeAttributes(C,true);FCKDomTools.InsertAfterNode(C,D);C.parentNode.removeChild(C);}}};FCKDocumentProcessor.AppendNew().ProcessDocument=function(A){var B=A.getElementsByTagName('INPUT');var C;var i=B.length-1;while (i>=0&&(C=B[i--])){if (C.type=='hidden'){var D=FCKDocumentProcessor_CreateFakeImage('FCK__InputHidden',C.cloneNode(true));D.setAttribute('_fckinputhidden','true',0);C.parentNode.insertBefore(D,C);C.parentNode.removeChild(C);}}} +var FCKSelection=FCK.Selection={}; +FCKSelection.GetType=function(){return FCK.EditorDocument.selection.type;};FCKSelection.GetSelectedElement=function(){if (this.GetType()=='Control'){var A=FCK.EditorDocument.selection.createRange();if (A&&A.item) return FCK.EditorDocument.selection.createRange().item(0);};return null;};FCKSelection.GetParentElement=function(){switch (this.GetType()){case 'Control':return FCKSelection.GetSelectedElement().parentElement;case 'None':return null;default:return FCK.EditorDocument.selection.createRange().parentElement();}};FCKSelection.SelectNode=function(A){FCK.Focus();FCK.EditorDocument.selection.empty();var B;try{B=FCK.EditorDocument.body.createControlRange();B.addElement(A);}catch(e){B=FCK.EditorDocument.body.createTextRange();B.moveToElementText(A);};B.select();};FCKSelection.Collapse=function(A){FCK.Focus();if (this.GetType()=='Text'){var B=FCK.EditorDocument.selection.createRange();B.collapse(A==null||A===true);B.select();}};FCKSelection.HasAncestorNode=function(A){var B;if (FCK.EditorDocument.selection.type=="Control"){B=this.GetSelectedElement();}else{var C=FCK.EditorDocument.selection.createRange();B=C.parentElement();};while (B){if (B.tagName==A) return true;B=B.parentNode;};return false;};FCKSelection.MoveToAncestorNode=function(A){var B,oRange;if (!FCK.EditorDocument) return null;if (FCK.EditorDocument.selection.type=="Control"){oRange=FCK.EditorDocument.selection.createRange();for (i=0;i=0;i--){var D=B.rows[i];if (C==0&&D.cells.length==1){FCKTableHandler.DeleteRows(D);continue;};if (D.cells[C]) D.removeChild(D.cells[C]);}};FCKTableHandler.InsertCell=function(A){var B=A?A:FCKSelection.MoveToAncestorNode('TD');if (!B) return null;var C=FCK.EditorDocument.createElement('TD');if (FCKBrowserInfo.IsGecko) C.innerHTML=GECKO_BOGUS;if (B.cellIndex==B.parentNode.cells.length-1){B.parentNode.appendChild(C);}else{B.parentNode.insertBefore(C,B.nextSibling);};return C;};FCKTableHandler.DeleteCell=function(A){if (A.parentNode.cells.length==1){FCKTableHandler.DeleteRows(FCKTools.GetElementAscensor(A,'TR'));return;};A.parentNode.removeChild(A);};FCKTableHandler.DeleteCells=function(){var A=FCKTableHandler.GetSelectedCells();for (var i=A.length-1;i>=0;i--){FCKTableHandler.DeleteCell(A[i]);}};FCKTableHandler.MergeCells=function(){var A=FCKTableHandler.GetSelectedCells();if (A.length<2) return;if (A[0].parentNode!=A[A.length-1].parentNode) return;var B=isNaN(A[0].colSpan)?1:A[0].colSpan;var C='';var D=FCK.EditorDocument.createDocumentFragment();for (var i=A.length-1;i>=0;i--){var E=A[i];for (var c=E.childNodes.length-1;c>=0;c--){var F=E.removeChild(E.childNodes[c]);if ((F.hasAttribute&&F.hasAttribute('_moz_editor_bogus_node'))||(F.getAttribute&&F.getAttribute('type',2)=='_moz')) continue;D.insertBefore(F,D.firstChild);};if (i>0){B+=isNaN(E.colSpan)?1:E.colSpan;FCKTableHandler.DeleteCell(E);}};A[0].colSpan=B;if (FCKBrowserInfo.IsGecko&&D.childNodes.length==0) A[0].innerHTML=GECKO_BOGUS;else A[0].appendChild(D);};FCKTableHandler.SplitCell=function(){var A=FCKTableHandler.GetSelectedCells();if (A.length!=1) return;var B=this._CreateTableMap(A[0].parentNode.parentNode);var C=FCKTableHandler._GetCellIndexSpan(B,A[0].parentNode.rowIndex,A[0]);var D=this._GetCollumnCells(B,C);for (var i=0;i1) E.rowSpan=A[0].rowSpan;}else{if (isNaN(D[i].colSpan)) D[i].colSpan=2;else D[i].colSpan+=1;}}};FCKTableHandler._GetCellIndexSpan=function(A,B,C){if (A.length=0&&B.compareEndPoints('StartToEnd',D)<=0)||(B.compareEndPoints('EndToStart',D)>=0&&B.compareEndPoints('EndToEnd',D)<=0)){A[A.length]=C.cells[i];}}}};return A;}; +var FCKXml=function(){this.Error=false;};FCKXml.prototype.LoadUrl=function(A){this.Error=false;var B=FCKTools.CreateXmlObject('XmlHttp');if (!B){this.Error=true;return;};B.open("GET",A,false);B.send(null);if (B.status==200||B.status==304) this.DOMDocument=B.responseXML;else if (B.status==0&&B.readyState==4){this.DOMDocument=FCKTools.CreateXmlObject('DOMDocument');this.DOMDocument.async=false;this.DOMDocument.resolveExternals=false;this.DOMDocument.loadXML(B.responseText);}else{this.DOMDocument=null;};if (this.DOMDocument==null||this.DOMDocument.firstChild==null){this.Error=true;if (window.confirm('Error loading "'+A+'"\r\nDo you want to see more info?')) alert('URL requested: "'+A+'"\r\nServer response:\r\nStatus: '+B.status+'\r\nResponse text:\r\n'+B.responseText);}};FCKXml.prototype.SelectNodes=function(A,B){if (this.Error) return [];if (B) return B.selectNodes(A);else return this.DOMDocument.selectNodes(A);};FCKXml.prototype.SelectSingleNode=function(A,B){if (this.Error) return null;if (B) return B.selectSingleNode(A);else return this.DOMDocument.selectSingleNode(A);} +var FCKStyleDef=function(A,B){this.Name=A;this.Element=B.toUpperCase();this.IsObjectElement=FCKRegexLib.ObjectElements.test(this.Element);this.Attributes={};};FCKStyleDef.prototype.AddAttribute=function(A,B){this.Attributes[A]=B;};FCKStyleDef.prototype.GetOpenerTag=function(){var s='<'+this.Element;for (var a in this.Attributes) s+=' '+a+'="'+this.Attributes[a]+'"';return s+'>';};FCKStyleDef.prototype.GetCloserTag=function(){return '';};FCKStyleDef.prototype.RemoveFromSelection=function(){if (FCKSelection.GetType()=='Control') this._RemoveMe(FCK.ToolbarSet.CurrentInstance.Selection.GetSelectedElement());else this._RemoveMe(FCK.ToolbarSet.CurrentInstance.Selection.GetParentElement());} +FCKStyleDef.prototype.ApplyToSelection=function(){var A=FCK.ToolbarSet.CurrentInstance.EditorDocument.selection;if (A.type=='Text'){var B=A.createRange();var e=document.createElement(this.Element);e.innerHTML=B.htmlText;this._AddAttributes(e);this._RemoveDuplicates(e);B.pasteHTML(e.outerHTML);}else if (A.type=='Control'){var C=FCK.ToolbarSet.CurrentInstance.Selection.GetSelectedElement();if (C.tagName==this.Element) this._AddAttributes(C);}};FCKStyleDef.prototype._AddAttributes=function(A){for (var a in this.Attributes){switch (a.toLowerCase()){case 'style':A.style.cssText=this.Attributes[a];break;case 'class':A.setAttribute('className',this.Attributes[a],0);break;case 'src':A.setAttribute('_fcksavedurl',this.Attributes[a],0);default:A.setAttribute(a,this.Attributes[a],0);}}};FCKStyleDef.prototype._RemoveDuplicates=function(A){for (var i=0;i');else if (A=='div'&&FCKBrowserInfo.IsGecko) FCK.ExecuteNamedCommand('FormatBlock','div');else FCK.ExecuteNamedCommand('FormatBlock','<'+A+'>');};FCKFormatBlockCommand.prototype.GetState=function(){return FCK.GetNamedCommandValue('FormatBlock');};var FCKPreviewCommand=function(){this.Name='Preview';};FCKPreviewCommand.prototype.Execute=function(){FCK.Preview();};FCKPreviewCommand.prototype.GetState=function(){return 0;};var FCKSaveCommand=function(){this.Name='Save';};FCKSaveCommand.prototype.Execute=function(){var A=FCK.GetParentForm();if (typeof(A.onsubmit)=='function'){var B=A.onsubmit();if (B!=null&&B===false) return;};if (typeof(A.submit)=='function') A.submit();else A.submit.click();};FCKSaveCommand.prototype.GetState=function(){return 0;};var FCKNewPageCommand=function(){this.Name='NewPage';};FCKNewPageCommand.prototype.Execute=function(){FCKUndo.SaveUndoStep();FCK.SetHTML('');FCKUndo.Typing=true;};FCKNewPageCommand.prototype.GetState=function(){return 0;};var FCKSourceCommand=function(){this.Name='Source';};FCKSourceCommand.prototype.Execute=function(){if (FCKConfig.SourcePopup){var A=FCKConfig.ScreenWidth*0.65;var B=FCKConfig.ScreenHeight*0.65;FCKDialog.OpenDialog('FCKDialog_Source',FCKLang.Source,'dialog/fck_source.html',A,B,null,null,true);}else FCK.SwitchEditMode();};FCKSourceCommand.prototype.GetState=function(){return (FCK.EditMode==0?0:1);};var FCKUndoCommand=function(){this.Name='Undo';};FCKUndoCommand.prototype.Execute=function(){if (FCKBrowserInfo.IsIE) FCKUndo.Undo();else FCK.ExecuteNamedCommand('Undo');};FCKUndoCommand.prototype.GetState=function(){if (FCKBrowserInfo.IsIE) return (FCKUndo.CheckUndoState()?0:-1);else return FCK.GetNamedCommandState('Undo');};var FCKRedoCommand=function(){this.Name='Redo';};FCKRedoCommand.prototype.Execute=function(){if (FCKBrowserInfo.IsIE) FCKUndo.Redo();else FCK.ExecuteNamedCommand('Redo');};FCKRedoCommand.prototype.GetState=function(){if (FCKBrowserInfo.IsIE) return (FCKUndo.CheckRedoState()?0:-1);else return FCK.GetNamedCommandState('Redo');};var FCKPageBreakCommand=function(){this.Name='PageBreak';};FCKPageBreakCommand.prototype.Execute=function(){var e=FCK.EditorDocument.createElement('DIV');e.style.pageBreakAfter='always';e.innerHTML=' ';var A=FCKDocumentProcessor_CreateFakeImage('FCK__PageBreak',e);A=FCK.InsertElement(A);};FCKPageBreakCommand.prototype.GetState=function(){return 0;};var FCKUnlinkCommand=function(){this.Name='Unlink';};FCKUnlinkCommand.prototype.Execute=function(){if (FCKBrowserInfo.IsGecko){var A=FCK.Selection.MoveToAncestorNode('A');if (A) FCKTools.RemoveOuterTags(A);return;};FCK.ExecuteNamedCommand(this.Name);};FCKUnlinkCommand.prototype.GetState=function(){var A=FCK.GetNamedCommandState(this.Name);if (A==0&&FCK.EditMode==0){var B=FCKSelection.MoveToAncestorNode('A');var C=(B&&B.name.length>0&&B.href.length==0);if (C) A=-1;};return A;};var FCKSelectAllCommand=function(){this.Name='SelectAll';};FCKSelectAllCommand.prototype.Execute=function(){if (FCK.EditMode==0){FCK.ExecuteNamedCommand('SelectAll');}else{var A=FCK.EditingArea.Textarea;if (FCKBrowserInfo.IsIE){A.createTextRange().execCommand('SelectAll');}else{A.selectionStart=0;A.selectionEnd=A.value.length;};A.focus();}};FCKSelectAllCommand.prototype.GetState=function(){return 0;};var FCKPasteCommand=function(){this.Name='Paste';};FCKPasteCommand.prototype={Execute:function(){if (FCKBrowserInfo.IsIE) FCK.Paste();else FCK.ExecuteNamedCommand('Paste');},GetState:function(){return FCK.GetNamedCommandState('Paste');}}; +var FCKSpellCheckCommand=function(){this.Name='SpellCheck';this.IsEnabled=(FCKConfig.SpellChecker=='ieSpell'||FCKConfig.SpellChecker=='SpellerPages');};FCKSpellCheckCommand.prototype.Execute=function(){switch (FCKConfig.SpellChecker){case 'ieSpell':this._RunIeSpell();break;case 'SpellerPages':FCKDialog.OpenDialog('FCKDialog_SpellCheck','Spell Check','dialog/fck_spellerpages.html',440,480);break;}};FCKSpellCheckCommand.prototype._RunIeSpell=function(){try{var A=new ActiveXObject("ieSpell.ieSpellExtension");A.CheckAllLinkedDocuments(FCK.EditorDocument);}catch(e){if(e.number==-2146827859){if (confirm(FCKLang.IeSpellDownload)) window.open(FCKConfig.IeSpellDownloadUrl,'IeSpellDownload');}else alert('Error Loading ieSpell: '+e.message+' ('+e.number+')');}};FCKSpellCheckCommand.prototype.GetState=function(){return this.IsEnabled?0:-1;} +var FCKTextColorCommand=function(A){this.Name=A=='ForeColor'?'TextColor':'BGColor';this.Type=A;var B;if (FCKBrowserInfo.IsIE) B=window;else if (FCK.ToolbarSet._IFrame) B=FCKTools.GetElementWindow(FCK.ToolbarSet._IFrame);else B=window.parent;this._Panel=new FCKPanel(B);this._Panel.AppendStyleSheet(FCKConfig.SkinPath+'fck_editor.css');this._Panel.MainNode.className='FCK_Panel';this._CreatePanelBody(this._Panel.Document,this._Panel.MainNode);FCKTools.DisableSelection(this._Panel.Document.body);};FCKTextColorCommand.prototype.Execute=function(A,B,C){FCK._ActiveColorPanelType=this.Type;this._Panel.Show(A,B,C);};FCKTextColorCommand.prototype.SetColor=function(A){if (FCK._ActiveColorPanelType=='ForeColor') FCK.ExecuteNamedCommand('ForeColor',A);else if (FCKBrowserInfo.IsGeckoLike){if (FCKBrowserInfo.IsGecko&&!FCKConfig.GeckoUseSPAN) FCK.EditorDocument.execCommand('useCSS',false,false);FCK.ExecuteNamedCommand('hilitecolor',A);if (FCKBrowserInfo.IsGecko&&!FCKConfig.GeckoUseSPAN) FCK.EditorDocument.execCommand('useCSS',false,true);}else FCK.ExecuteNamedCommand('BackColor',A);delete FCK._ActiveColorPanelType;};FCKTextColorCommand.prototype.GetState=function(){return 0;};function FCKTextColorCommand_OnMouseOver() { this.className='ColorSelected';};function FCKTextColorCommand_OnMouseOut() { this.className='ColorDeselected';};function FCKTextColorCommand_OnClick(){this.className='ColorDeselected';this.Command.SetColor('#'+this.Color);this.Command._Panel.Hide();};function FCKTextColorCommand_AutoOnClick(){this.className='ColorDeselected';this.Command.SetColor('');this.Command._Panel.Hide();};function FCKTextColorCommand_MoreOnClick(){this.className='ColorDeselected';this.Command._Panel.Hide();FCKDialog.OpenDialog('FCKDialog_Color',FCKLang.DlgColorTitle,'dialog/fck_colorselector.html',400,330,this.Command.SetColor);};FCKTextColorCommand.prototype._CreatePanelBody=function(A,B){function CreateSelectionDiv(){var C=A.createElement("DIV");C.className='ColorDeselected';C.onmouseover=FCKTextColorCommand_OnMouseOver;C.onmouseout=FCKTextColorCommand_OnMouseOut;return C;};var D=B.appendChild(A.createElement("TABLE"));D.className='ForceBaseFont';D.style.tableLayout='fixed';D.cellPadding=0;D.cellSpacing=0;D.border=0;D.width=150;var E=D.insertRow(-1).insertCell(-1);E.colSpan=8;var C=E.appendChild(CreateSelectionDiv());C.innerHTML='\n \n \n \n \n
'+FCKLang.ColorAutomatic+'
';C.Command=this;C.onclick=FCKTextColorCommand_AutoOnClick;var G=FCKConfig.FontColors.toString().split(',');var H=0;while (H
';C.Command=this;C.onclick=FCKTextColorCommand_OnClick;}};E=D.insertRow(-1).insertCell(-1);E.colSpan=8;C=E.appendChild(CreateSelectionDiv());C.innerHTML='
'+FCKLang.ColorMoreColors+'
';C.Command=this;C.onclick=FCKTextColorCommand_MoreOnClick;} +var FCKPastePlainTextCommand=function(){this.Name='PasteText';};FCKPastePlainTextCommand.prototype.Execute=function(){FCK.PasteAsPlainText();};FCKPastePlainTextCommand.prototype.GetState=function(){return FCK.GetNamedCommandState('Paste');}; +var FCKPasteWordCommand=function(){this.Name='PasteWord';};FCKPasteWordCommand.prototype.Execute=function(){FCK.PasteFromWord();};FCKPasteWordCommand.prototype.GetState=function(){if (FCKConfig.ForcePasteAsPlainText) return -1;else return FCK.GetNamedCommandState('Paste');}; +var FCKTableCommand=function(A){this.Name=A;};FCKTableCommand.prototype.Execute=function(){FCKUndo.SaveUndoStep();switch (this.Name){case 'TableInsertRow':FCKTableHandler.InsertRow();break;case 'TableDeleteRows':FCKTableHandler.DeleteRows();break;case 'TableInsertColumn':FCKTableHandler.InsertColumn();break;case 'TableDeleteColumns':FCKTableHandler.DeleteColumns();break;case 'TableInsertCell':FCKTableHandler.InsertCell();break;case 'TableDeleteCells':FCKTableHandler.DeleteCells();break;case 'TableMergeCells':FCKTableHandler.MergeCells();break;case 'TableSplitCell':FCKTableHandler.SplitCell();break;case 'TableDelete':FCKTableHandler.DeleteTable();break;default:alert(FCKLang.UnknownCommand.replace(/%1/g,this.Name));}};FCKTableCommand.prototype.GetState=function(){return 0;} +var FCKStyleCommand=function(){this.Name='Style';this.StylesLoader=new FCKStylesLoader();this.StylesLoader.Load(FCKConfig.StylesXmlPath);this.Styles=this.StylesLoader.Styles;};FCKStyleCommand.prototype.Execute=function(A,B){FCKUndo.SaveUndoStep();if (B.Selected) B.Style.RemoveFromSelection();else B.Style.ApplyToSelection();FCKUndo.SaveUndoStep();FCK.Focus();FCK.Events.FireEvent("OnSelectionChange");};FCKStyleCommand.prototype.GetState=function(){if (!FCK.EditorDocument) return -1;var A=FCK.EditorDocument.selection;if (FCKSelection.GetType()=='Control'){var e=FCKSelection.GetSelectedElement();if (e) return this.StylesLoader.StyleGroups[e.tagName]?0:-1;};return 0;};FCKStyleCommand.prototype.GetActiveStyles=function(){var A=[];if (FCKSelection.GetType()=='Control') this._CheckStyle(FCKSelection.GetSelectedElement(),A,false);else this._CheckStyle(FCKSelection.GetParentElement(),A,true);return A;};FCKStyleCommand.prototype._CheckStyle=function(A,B,C){if (!A) return;if (A.nodeType==1){var D=this.StylesLoader.StyleGroups[A.tagName];if (D){for (var i=0;i';B.open();B.write(''+E+'<\/head><\/body><\/html>');B.close();FCKTools.AddEventListenerEx(D,'focus',FCKPanel_Window_OnFocus,this);FCKTools.AddEventListenerEx(D,'blur',FCKPanel_Window_OnBlur,this);};B.dir=FCKLang.Dir;B.oncontextmenu=FCKTools.CancelEvent;this.MainNode=B.body.appendChild(B.createElement('DIV'));this.MainNode.style.cssFloat=this.IsRTL?'right':'left';};FCKPanel.prototype.AppendStyleSheet=function(A){FCKTools.AppendStyleSheet(this.Document,A);};FCKPanel.prototype.Preload=function(x,y,A){if (this._Popup) this._Popup.show(x,y,0,0,A);};FCKPanel.prototype.Show=function(x,y,A,B,C){var D;if (this._Popup){this._Popup.show(x,y,0,0,A);this.MainNode.style.width=B?B+'px':'';this.MainNode.style.height=C?C+'px':'';D=this.MainNode.offsetWidth;if (this.IsRTL){if (this.IsContextMenu) x=x-D+1;else if (A) x=(x*-1)+A.offsetWidth-D;};this._Popup.show(x,y,D,this.MainNode.offsetHeight,A);if (this.OnHide){if (this._Timer) CheckPopupOnHide.call(this,true);this._Timer=FCKTools.SetInterval(CheckPopupOnHide,100,this);}}else{if (typeof(FCKFocusManager)!='undefined') FCKFocusManager.Lock();if (this.ParentPanel) this.ParentPanel.Lock();this.MainNode.style.width=B?B+'px':'';this.MainNode.style.height=C?C+'px':'';D=this.MainNode.offsetWidth;if (!B) this._IFrame.width=1;if (!C) this._IFrame.height=1;D=this.MainNode.offsetWidth;var E=FCKTools.GetElementPosition(A.nodeType==9?(FCKTools.IsStrictMode(A)?A.documentElement:A.body):A,this._Window);if (this.IsRTL&&!this.IsContextMenu) x=(x*-1);x+=E.X;y+=E.Y;if (this.IsRTL){if (this.IsContextMenu) x=x-D+1;else if (A) x=x+A.offsetWidth-D;}else{var F=FCKTools.GetViewPaneSize(this._Window);var G=FCKTools.GetScrollPosition(this._Window);var H=F.Height+G.Y;var I=F.Width+G.X;if ((x+D)>I) x-=x+D-I;if ((y+this.MainNode.offsetHeight)>H) y-=y+this.MainNode.offsetHeight-H;};if (x<0) x=0;this._IFrame.style.left=x+'px';this._IFrame.style.top=y+'px';var J=D;var K=this.MainNode.offsetHeight;this._IFrame.width=J;this._IFrame.height=K;this._IFrame.contentWindow.focus();};this._IsOpened=true;FCKTools.RunFunction(this.OnShow,this);};FCKPanel.prototype.Hide=function(A){if (this._Popup) this._Popup.hide();else{if (!this._IsOpened) return;if (typeof(FCKFocusManager)!='undefined') FCKFocusManager.Unlock();this._IFrame.width=this._IFrame.height=0;this._IsOpened=false;if (this.ParentPanel) this.ParentPanel.Unlock();if (!A) FCKTools.RunFunction(this.OnHide,this);}};FCKPanel.prototype.CheckIsOpened=function(){if (this._Popup) return this._Popup.isOpen;else return this._IsOpened;};FCKPanel.prototype.CreateChildPanel=function(){var A=this._Popup?FCKTools.GetDocumentWindow(this.Document):this._Window;var B=new FCKPanel(A);B.ParentPanel=this;return B;};FCKPanel.prototype.Lock=function(){this._LockCounter++;};FCKPanel.prototype.Unlock=function(){if (--this._LockCounter==0&&!this.HasFocus) this.Hide();};function FCKPanel_Window_OnFocus(e,A){A.HasFocus=true;};function FCKPanel_Window_OnBlur(e,A){A.HasFocus=false;if (A._LockCounter==0) FCKTools.RunFunction(A.Hide,A);};function CheckPopupOnHide(A){if (A||!this._Popup.isOpen){window.clearInterval(this._Timer);this._Timer=null;FCKTools.RunFunction(this.OnHide,this);}};function FCKPanel_Cleanup(){this._Popup=null;this._Window=null;this.Document=null;this.MainNode=null;} +var FCKIcon=function(A){var B=A?typeof(A):'undefined';switch (B){case 'number':this.Path=FCKConfig.SkinPath+'fck_strip.gif';this.Size=16;this.Position=A;break;case 'undefined':this.Path=FCK_SPACER_PATH;break;case 'string':this.Path=A;break;default:this.Path=A[0];this.Size=A[1];this.Position=A[2];}};FCKIcon.prototype.CreateIconElement=function(A){var B,eIconImage;if (this.Position){var C='-'+((this.Position-1)*this.Size)+'px';if (FCKBrowserInfo.IsIE){B=A.createElement('DIV');eIconImage=B.appendChild(A.createElement('IMG'));eIconImage.src=this.Path;eIconImage.style.top=C;}else{B=A.createElement('IMG');B.src=FCK_SPACER_PATH;B.style.backgroundPosition='0px '+C;B.style.backgroundImage='url('+this.Path+')';}}else{if (FCKBrowserInfo.IsIE){B=A.createElement('DIV');eIconImage=B.appendChild(A.createElement('IMG'));eIconImage.src=this.Path?this.Path:FCK_SPACER_PATH;}else{B=A.createElement('IMG');B.src=this.Path?this.Path:FCK_SPACER_PATH;}};B.className='TB_Button_Image';return B;} +var FCKToolbarButtonUI=function(A,B,C,D,E,F){this.Name=A;this.Label=B||A;this.Tooltip=C||this.Label;this.Style=E||0;this.State=F||0;this.Icon=new FCKIcon(D);if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKToolbarButtonUI_Cleanup);};FCKToolbarButtonUI.prototype._CreatePaddingElement=function(A){var B=A.createElement('IMG');B.className='TB_Button_Padding';B.src=FCK_SPACER_PATH;return B;};FCKToolbarButtonUI.prototype.Create=function(A){var B=this.MainElement;if (B){FCKToolbarButtonUI_Cleanup.call(this);if (B.parentNode) B.parentNode.removeChild(B);B=this.MainElement=null;};var C=FCKTools.GetElementDocument(A);B=this.MainElement=C.createElement('DIV');B._FCKButton=this;B.title=this.Tooltip;if (FCKBrowserInfo.IsGecko) B.onmousedown=FCKTools.CancelEvent;this.ChangeState(this.State,true);if (this.Style==0&&!this.ShowArrow){B.appendChild(this.Icon.CreateIconElement(C));}else{var D=B.appendChild(C.createElement('TABLE'));D.cellPadding=0;D.cellSpacing=0;var E=D.insertRow(-1);var F=E.insertCell(-1);if (this.Style==0||this.Style==2) F.appendChild(this.Icon.CreateIconElement(C));else F.appendChild(this._CreatePaddingElement(C));if (this.Style==1||this.Style==2){F=E.insertCell(-1);F.className='TB_Button_Text';F.noWrap=true;F.appendChild(C.createTextNode(this.Label));};if (this.ShowArrow){if (this.Style!=0){E.insertCell(-1).appendChild(this._CreatePaddingElement(C));};F=E.insertCell(-1);var G=F.appendChild(C.createElement('IMG'));G.src=FCKConfig.SkinPath+'images/toolbar.buttonarrow.gif';G.width=5;G.height=3;};F=E.insertCell(-1);F.appendChild(this._CreatePaddingElement(C));};A.appendChild(B);};FCKToolbarButtonUI.prototype.ChangeState=function(A,B){if (!B&&this.State==A) return;var e=this.MainElement;switch (parseInt(A,10)){case 0:e.className='TB_Button_Off';e.onmouseover=FCKToolbarButton_OnMouseOverOff;e.onmouseout=FCKToolbarButton_OnMouseOutOff;e.onclick=FCKToolbarButton_OnClick;break;case 1:e.className='TB_Button_On';e.onmouseover=FCKToolbarButton_OnMouseOverOn;e.onmouseout=FCKToolbarButton_OnMouseOutOn;e.onclick=FCKToolbarButton_OnClick;break;case -1:e.className='TB_Button_Disabled';e.onmouseover=null;e.onmouseout=null;e.onclick=null;break;};this.State=A;};function FCKToolbarButtonUI_Cleanup(){if (this.MainElement){this.MainElement._FCKButton=null;this.MainElement=null;}};function FCKToolbarButton_OnMouseOverOn(){this.className='TB_Button_On_Over';};function FCKToolbarButton_OnMouseOutOn(){this.className='TB_Button_On';};function FCKToolbarButton_OnMouseOverOff(){this.className='TB_Button_Off_Over';};function FCKToolbarButton_OnMouseOutOff(){this.className='TB_Button_Off';};function FCKToolbarButton_OnClick(e){if (this._FCKButton.OnClick) this._FCKButton.OnClick(this._FCKButton);}; +var FCKToolbarButton=function(A,B,C,D,E,F,G){this.CommandName=A;this.Label=B;this.Tooltip=C;this.Style=D;this.SourceView=E?true:false;this.ContextSensitive=F?true:false;if (G==null) this.IconPath=FCKConfig.SkinPath+'toolbar/'+A.toLowerCase()+'.gif';else if (typeof(G)=='number') this.IconPath=[FCKConfig.SkinPath+'fck_strip.gif',16,G];};FCKToolbarButton.prototype.Create=function(A){this._UIButton=new FCKToolbarButtonUI(this.CommandName,this.Label,this.Tooltip,this.IconPath,this.Style);this._UIButton.OnClick=this.Click;this._UIButton._ToolbarButton=this;this._UIButton.Create(A);};FCKToolbarButton.prototype.RefreshState=function(){var A=FCK.ToolbarSet.CurrentInstance.Commands.GetCommand(this.CommandName).GetState();if (A==this._UIButton.State) return;this._UIButton.ChangeState(A);};FCKToolbarButton.prototype.Click=function(){var A=this._ToolbarButton||this;FCK.ToolbarSet.CurrentInstance.Commands.GetCommand(A.CommandName).Execute();};FCKToolbarButton.prototype.Enable=function(){this.RefreshState();};FCKToolbarButton.prototype.Disable=function(){this._UIButton.ChangeState(-1);} +var FCKSpecialCombo=function(A,B,C,D,E){this.FieldWidth=B||100;this.PanelWidth=C||150;this.PanelMaxHeight=D||150;this.Label=' ';this.Caption=A;this.Tooltip=A;this.Style=2;this.Enabled=true;this.Items={};this._Panel=new FCKPanel(E||window);this._Panel.AppendStyleSheet(FCKConfig.SkinPath+'fck_editor.css');this._PanelBox=this._Panel.MainNode.appendChild(this._Panel.Document.createElement('DIV'));this._PanelBox.className='SC_Panel';this._PanelBox.style.width=this.PanelWidth+'px';this._PanelBox.innerHTML='
';this._ItemsHolderEl=this._PanelBox.getElementsByTagName('TD')[0];if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKSpecialCombo_Cleanup);};function FCKSpecialCombo_ItemOnMouseOver(){this.className+=' SC_ItemOver';};function FCKSpecialCombo_ItemOnMouseOut(){this.className=this.originalClass;};function FCKSpecialCombo_ItemOnClick(){this.className=this.originalClass;this.FCKSpecialCombo._Panel.Hide();this.FCKSpecialCombo.SetLabel(this.FCKItemLabel);if (typeof(this.FCKSpecialCombo.OnSelect)=='function') this.FCKSpecialCombo.OnSelect(this.FCKItemID,this);};FCKSpecialCombo.prototype.AddItem=function(A,B,C,D){var E=this._ItemsHolderEl.appendChild(this._Panel.Document.createElement('DIV'));E.className=E.originalClass='SC_Item';E.innerHTML=B;E.FCKItemID=A;E.FCKItemLabel=C||A;E.FCKSpecialCombo=this;E.Selected=false;if (FCKBrowserInfo.IsIE) E.style.width='100%';if (D) E.style.backgroundColor=D;E.onmouseover=FCKSpecialCombo_ItemOnMouseOver;E.onmouseout=FCKSpecialCombo_ItemOnMouseOut;E.onclick=FCKSpecialCombo_ItemOnClick;this.Items[A.toString().toLowerCase()]=E;return E;};FCKSpecialCombo.prototype.SelectItem=function(A){A=A?A.toString().toLowerCase():'';var B=this.Items[A];if (B){B.className=B.originalClass='SC_ItemSelected';B.Selected=true;}};FCKSpecialCombo.prototype.SelectItemByLabel=function(A,B){for (var C in this.Items){var D=this.Items[C];if (D.FCKItemLabel==A){D.className=D.originalClass='SC_ItemSelected';D.Selected=true;if (B) this.SetLabel(A);}}};FCKSpecialCombo.prototype.DeselectAll=function(A){for (var i in this.Items){this.Items[i].className=this.Items[i].originalClass='SC_Item';this.Items[i].Selected=false;};if (A) this.SetLabel('');};FCKSpecialCombo.prototype.SetLabelById=function(A){A=A?A.toString().toLowerCase():'';var B=this.Items[A];this.SetLabel(B?B.FCKItemLabel:'');};FCKSpecialCombo.prototype.SetLabel=function(A){this.Label=A.length==0?' ':A;if (this._LabelEl){this._LabelEl.innerHTML=this.Label;FCKTools.DisableSelection(this._LabelEl);}};FCKSpecialCombo.prototype.SetEnabled=function(A){this.Enabled=A;this._OuterTable.className=A?'':'SC_FieldDisabled';};FCKSpecialCombo.prototype.Create=function(A){var B=FCKTools.GetElementDocument(A);var C=this._OuterTable=A.appendChild(B.createElement('TABLE'));C.cellPadding=0;C.cellSpacing=0;C.insertRow(-1);var D;var E;switch (this.Style){case 0:D='TB_ButtonType_Icon';E=false;break;case 1:D='TB_ButtonType_Text';E=false;break;case 2:E=true;break;};if (this.Caption&&this.Caption.length>0&&E){var F=C.rows[0].insertCell(-1);F.innerHTML=this.Caption;F.className='SC_FieldCaption';};var G=FCKTools.AppendElement(C.rows[0].insertCell(-1),'div');if (E){G.className='SC_Field';G.style.width=this.FieldWidth+'px';G.innerHTML='
 
';this._LabelEl=G.getElementsByTagName('label')[0];this._LabelEl.innerHTML=this.Label;}else{G.className='TB_Button_Off';G.innerHTML='
'+this.Caption+'
';};G.SpecialCombo=this;G.onmouseover=FCKSpecialCombo_OnMouseOver;G.onmouseout=FCKSpecialCombo_OnMouseOut;G.onclick=FCKSpecialCombo_OnClick;FCKTools.DisableSelection(this._Panel.Document.body);};function FCKSpecialCombo_Cleanup(){this._LabelEl=null;this._OuterTable=null;this._ItemsHolderEl=null;this._PanelBox=null;if (this.Items){for (var A in this.Items) this.Items[A]=null;}};function FCKSpecialCombo_OnMouseOver(){if (this.SpecialCombo.Enabled){switch (this.SpecialCombo.Style){case 0:this.className='TB_Button_On_Over';break;case 1:this.className='TB_Button_On_Over';break;case 2:this.className='SC_Field SC_FieldOver';break;}}};function FCKSpecialCombo_OnMouseOut(){switch (this.SpecialCombo.Style){case 0:this.className='TB_Button_Off';break;case 1:this.className='TB_Button_Off';break;case 2:this.className='SC_Field';break;}};function FCKSpecialCombo_OnClick(e){var A=this.SpecialCombo;if (A.Enabled){var B=A._Panel;var C=A._PanelBox;var D=A._ItemsHolderEl;var E=A.PanelMaxHeight;if (A.OnBeforeClick) A.OnBeforeClick(A);if (FCKBrowserInfo.IsIE) B.Preload(0,this.offsetHeight,this);if (D.offsetHeight>E) C.style.height=E+'px';else C.style.height='';B.Show(0,this.offsetHeight,this);}}; +var FCKToolbarSpecialCombo=function(){this.SourceView=false;this.ContextSensitive=true;this._LastValue=null;};function FCKToolbarSpecialCombo_OnSelect(A,B){FCK.ToolbarSet.CurrentInstance.Commands.GetCommand(this.CommandName).Execute(A,B);};FCKToolbarSpecialCombo.prototype.Create=function(A){this._Combo=new FCKSpecialCombo(this.GetLabel(),this.FieldWidth,this.PanelWidth,this.PanelMaxHeight,FCKBrowserInfo.IsIE?window:FCKTools.GetElementWindow(A).parent);this._Combo.Tooltip=this.Tooltip;this._Combo.Style=this.Style;this.CreateItems(this._Combo);this._Combo.Create(A);this._Combo.CommandName=this.CommandName;this._Combo.OnSelect=FCKToolbarSpecialCombo_OnSelect;};function FCKToolbarSpecialCombo_RefreshActiveItems(A,B){A.DeselectAll();A.SelectItem(B);A.SetLabelById(B);};FCKToolbarSpecialCombo.prototype.RefreshState=function(){var A;var B=FCK.ToolbarSet.CurrentInstance.Commands.GetCommand(this.CommandName).GetState();if (B!=-1){A=1;if (this.RefreshActiveItems) this.RefreshActiveItems(this._Combo,B);else{if (this._LastValue!=B){this._LastValue=B;FCKToolbarSpecialCombo_RefreshActiveItems(this._Combo,B);}}}else A=-1;if (A==this.State) return;if (A==-1){this._Combo.DeselectAll();this._Combo.SetLabel('');};this.State=A;this._Combo.SetEnabled(A!=-1);};FCKToolbarSpecialCombo.prototype.Enable=function(){this.RefreshState();};FCKToolbarSpecialCombo.prototype.Disable=function(){this.State=-1;this._Combo.DeselectAll();this._Combo.SetLabel('');this._Combo.SetEnabled(false);}; +var FCKToolbarFontsCombo=function(A,B){this.CommandName='FontName';this.Label=this.GetLabel();this.Tooltip=A?A:this.Label;this.Style=B?B:2;};FCKToolbarFontsCombo.prototype=new FCKToolbarSpecialCombo;FCKToolbarFontsCombo.prototype.GetLabel=function(){return FCKLang.Font;};FCKToolbarFontsCombo.prototype.CreateItems=function(A){var B=FCKConfig.FontNames.split(';');for (var i=0;i'+B[i]+'');} +var FCKToolbarFontSizeCombo=function(A,B){this.CommandName='FontSize';this.Label=this.GetLabel();this.Tooltip=A?A:this.Label;this.Style=B?B:2;};FCKToolbarFontSizeCombo.prototype=new FCKToolbarSpecialCombo;FCKToolbarFontSizeCombo.prototype.GetLabel=function(){return FCKLang.FontSize;};FCKToolbarFontSizeCombo.prototype.CreateItems=function(A){A.FieldWidth=70;var B=FCKConfig.FontSizes.split(';');for (var i=0;i'+C[1]+'',C[1]);}} +var FCKToolbarFontFormatCombo=function(A,B){this.CommandName='FontFormat';this.Label=this.GetLabel();this.Tooltip=A?A:this.Label;this.Style=B?B:2;this.NormalLabel='Normal';this.PanelWidth=190;};FCKToolbarFontFormatCombo.prototype=new FCKToolbarSpecialCombo;FCKToolbarFontFormatCombo.prototype.GetLabel=function(){return FCKLang.FontFormat;};FCKToolbarFontFormatCombo.prototype.CreateItems=function(A){var B=A._Panel.Document;FCKTools.AppendStyleSheet(B,FCKConfig.ToolbarComboPreviewCSS);if (FCKConfig.BodyId&&FCKConfig.BodyId.length>0) B.body.id=FCKConfig.BodyId;if (FCKConfig.BodyClass&&FCKConfig.BodyClass.length>0) B.body.className+=' '+FCKConfig.BodyClass;var C=FCKLang['FontFormats'].split(';');var D={p:C[0],pre:C[1],address:C[2],h1:C[3],h2:C[4],h3:C[5],h4:C[6],h5:C[7],h6:C[8],div:C[9]};var E=FCKConfig.FontFormats.split(';');for (var i=0;i<'+F+'>'+G+'',G);}};if (FCKBrowserInfo.IsIE){FCKToolbarFontFormatCombo.prototype.RefreshActiveItems=function(A,B){if (B==this.NormalLabel){if (A.Label!=' ') A.DeselectAll(true);}else{if (this._LastValue==B) return;A.SelectItemByLabel(B,true);};this._LastValue=B;}} +var FCKToolbarStyleCombo=function(A,B){this.CommandName='Style';this.Label=this.GetLabel();this.Tooltip=A?A:this.Label;this.Style=B?B:2;};FCKToolbarStyleCombo.prototype=new FCKToolbarSpecialCombo;FCKToolbarStyleCombo.prototype.GetLabel=function(){return FCKLang.Style;};FCKToolbarStyleCombo.prototype.CreateItems=function(A){var B=A._Panel.Document;FCKTools.AppendStyleSheet(B,FCKConfig.ToolbarComboPreviewCSS);B.body.className+=' ForceBaseFont';if (FCKConfig.BodyId&&FCKConfig.BodyId.length>0) B.body.id=FCKConfig.BodyId;if (FCKConfig.BodyClass&&FCKConfig.BodyClass.length>0) B.body.className+=' '+FCKConfig.BodyClass;if (!(FCKBrowserInfo.IsGecko&&FCKBrowserInfo.IsGecko10)) A.OnBeforeClick=this.RefreshVisibleItems;var C=FCK.ToolbarSet.CurrentInstance.Commands.GetCommand(this.CommandName).Styles;for (var s in C){var D=C[s];var E;if (D.IsObjectElement) E=A.AddItem(s,s);else E=A.AddItem(s,D.GetOpenerTag()+s+D.GetCloserTag());E.Style=D;}};FCKToolbarStyleCombo.prototype.RefreshActiveItems=function(A){A.DeselectAll();var B=FCK.ToolbarSet.CurrentInstance.Commands.GetCommand(this.CommandName).GetActiveStyles();if (B.length>0){for (var i=0;i'+document.getElementById('xToolbarSpace').innerHTML+'');G.close();G.oncontextmenu=FCKTools.CancelEvent;FCKTools.AppendStyleSheet(G,FCKConfig.SkinPath+'fck_editor.css');B=D.__FCKToolbarSet=new FCKToolbarSet(G);B._IFrame=F;if (FCK.IECleanup) FCK.IECleanup.AddItem(D,FCKToolbarSet_Target_Cleanup);};B.CurrentInstance=FCK;FCK.AttachToOnSelectionChange(B.RefreshItemsState);return B;};function FCK_OnBlur(A){var B=A.ToolbarSet;if (B.CurrentInstance==A) B.Disable();};function FCK_OnFocus(A){var B=A.ToolbarSet;var C=A||FCK;B.CurrentInstance.FocusManager.RemoveWindow(B._IFrame.contentWindow);B.CurrentInstance=C;C.FocusManager.AddWindow(B._IFrame.contentWindow,true);B.Enable();};function FCKToolbarSet_Cleanup(){this._TargetElement=null;this._IFrame=null;};function FCKToolbarSet_Target_Cleanup(){this.__FCKToolbarSet=null;};var FCKToolbarSet=function(A){this._Document=A;this._TargetElement=A.getElementById('xToolbar');var B=A.getElementById('xExpandHandle');var C=A.getElementById('xCollapseHandle');B.title=FCKLang.ToolbarExpand;B.onclick=FCKToolbarSet_Expand_OnClick;C.title=FCKLang.ToolbarCollapse;C.onclick=FCKToolbarSet_Collapse_OnClick;if (!FCKConfig.ToolbarCanCollapse||FCKConfig.ToolbarStartExpanded) this.Expand();else this.Collapse();C.style.display=FCKConfig.ToolbarCanCollapse?'':'none';if (FCKConfig.ToolbarCanCollapse) C.style.display='';else A.getElementById('xTBLeftBorder').style.display='';this.Toolbars=[];this.IsLoaded=false;if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKToolbarSet_Cleanup);};function FCKToolbarSet_Expand_OnClick(){FCK.ToolbarSet.Expand();};function FCKToolbarSet_Collapse_OnClick(){FCK.ToolbarSet.Collapse();};FCKToolbarSet.prototype.Expand=function(){this._ChangeVisibility(false);};FCKToolbarSet.prototype.Collapse=function(){this._ChangeVisibility(true);};FCKToolbarSet.prototype._ChangeVisibility=function(A){this._Document.getElementById('xCollapsed').style.display=A?'':'none';this._Document.getElementById('xExpanded').style.display=A?'none':'';if (FCKBrowserInfo.IsGecko){FCKTools.RunFunction(window.onresize);}};FCKToolbarSet.prototype.Load=function(A){this.Name=A;this.Items=[];this.ItemsWysiwygOnly=[];this.ItemsContextSensitive=[];this._TargetElement.innerHTML='';var B=FCKConfig.ToolbarSets[A];if (!B){alert(FCKLang.UnknownToolbarSet.replace(/%1/g,A));return;};this.Toolbars=[];for (var x=0;x0) A.deleteRow(0);}};FCKMenuBlock.prototype.Create=function(A){if (!this._ItemsTable){if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKMenuBlock_Cleanup);this._Window=FCKTools.GetElementWindow(A);var B=FCKTools.GetElementDocument(A);var C=A.appendChild(B.createElement('table'));C.cellPadding=0;C.cellSpacing=0;FCKTools.DisableSelection(C);var D=C.insertRow(-1).insertCell(-1);D.className='MN_Menu';var E=this._ItemsTable=D.appendChild(B.createElement('table'));E.cellPadding=0;E.cellSpacing=0;};for (var i=0;i0&&F.href.length==0);if (G) return;menu.AddSeparator();if (E) menu.AddItem('Link',FCKLang.EditLink,34);menu.AddItem('Unlink',FCKLang.RemoveLink,35);}}};case 'Image':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&!tag.getAttribute('_fckfakelement')){menu.AddSeparator();menu.AddItem('Image',FCKLang.ImageProperties,37);}}};case 'Anchor':return {AddItems:function(menu,tag,tagName){var F=FCKSelection.MoveToAncestorNode('A');var G=(F&&F.name.length>0);if (G||(tagName=='IMG'&&tag.getAttribute('_fckanchor'))){menu.AddSeparator();menu.AddItem('Anchor',FCKLang.AnchorProp,36);}}};case 'Flash':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&tag.getAttribute('_fckflash')){menu.AddSeparator();menu.AddItem('Flash',FCKLang.FlashProperties,38);}}};case 'Form':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('FORM')){menu.AddSeparator();menu.AddItem('Form',FCKLang.FormProp,48);}}};case 'Checkbox':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='checkbox'){menu.AddSeparator();menu.AddItem('Checkbox',FCKLang.CheckboxProp,49);}}};case 'Radio':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='radio'){menu.AddSeparator();menu.AddItem('Radio',FCKLang.RadioButtonProp,50);}}};case 'TextField':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&(tag.type=='text'||tag.type=='password')){menu.AddSeparator();menu.AddItem('TextField',FCKLang.TextFieldProp,51);}}};case 'HiddenField':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&tag.getAttribute('_fckinputhidden')){menu.AddSeparator();menu.AddItem('HiddenField',FCKLang.HiddenFieldProp,56);}}};case 'ImageButton':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='image'){menu.AddSeparator();menu.AddItem('ImageButton',FCKLang.ImageButtonProp,55);}}};case 'Button':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&(tag.type=='button'||tag.type=='submit'||tag.type=='reset')){menu.AddSeparator();menu.AddItem('Button',FCKLang.ButtonProp,54);}}};case 'Select':return {AddItems:function(menu,tag,tagName){if (tagName=='SELECT'){menu.AddSeparator();menu.AddItem('Select',FCKLang.SelectionFieldProp,53);}}};case 'Textarea':return {AddItems:function(menu,tag,tagName){if (tagName=='TEXTAREA'){menu.AddSeparator();menu.AddItem('Textarea',FCKLang.TextareaProp,52);}}};case 'BulletedList':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('UL')){menu.AddSeparator();menu.AddItem('BulletedList',FCKLang.BulletedListProp,27);}}};case 'NumberedList':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('OL')){menu.AddSeparator();menu.AddItem('NumberedList',FCKLang.NumberedListProp,26);}}};};return null;};function FCK_ContextMenu_OnBeforeOpen(){FCK.Events.FireEvent('OnSelectionChange');var A,sTagName;if ((A=FCKSelection.GetSelectedElement())) sTagName=A.tagName;var B=FCK.ContextMenu._InnerContextMenu;B.RemoveAllItems();var C=FCK.ContextMenu.Listeners;for (var i=0;i0){var A;if (this.AvailableLangs.IndexOf(FCKLanguageManager.ActiveLanguage.Code)>=0) A=FCKLanguageManager.ActiveLanguage.Code;else A=this.AvailableLangs[0];LoadScript(this.Path+'lang/'+A+'.js');};LoadScript(this.Path+'fckplugin.js');} +var FCKPlugins=FCK.Plugins={};FCKPlugins.ItemsCount=0;FCKPlugins.Items={};FCKPlugins.Load=function(){var A=FCKPlugins.Items;for (var i=0;i", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Adres", DlgLnkEMailSubject : "Boodskap Opskrif", DlgLnkEMailBody : "Boodskap Inhoud", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Cell spasieering", DlgTableCellPad : "Cell buffer", DlgTableCaption : "Beskreiwing", DlgTableSummary : "Opsomming", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Cell eienskappe", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Bo", DlgCellVerAlignMiddle : "Middel", DlgCellVerAlignBottom : "Onder", DlgCellVerAlignBaseline : "Baseline", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Rei strekking", DlgCellCollSpan : "Kolom strekking", DlgCellBackColor : "Agtergrond Kleur", DlgCellBorderColor : "Kant Kleur", DlgCellBtnSelect : "Keuse...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Vind", DlgFindFindBtn : "Vind", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Voeg asseblief die inhoud in die gegewe box by met sleutel kombe DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoreer karakter soort defenisies", DlgPasteRemoveStyles : "Verweider Styl defenisies", +DlgPasteCleanBox : "Maak Box Skoon", // Color Picker ColorAutomatic : "Automaties", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Meer oor", DlgAboutBrowserInfoTab : "Blaai Informasie deur", DlgAboutLicenseTab : "Lesensie", DlgAboutVersion : "weergawe", -DlgAboutInfo : "Vir meer informasie gaan na ", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Vir meer informasie gaan na " +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/ar.js b/httemplate/elements/fckeditor/editor/lang/ar.js index 8bbbca6e1..91d34f11e 100644 --- a/httemplate/elements/fckeditor/editor/lang/ar.js +++ b/httemplate/elements/fckeditor/editor/lang/ar.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "إزالة التنسيقات", InsertLinkLbl : "رابط", InsertLink : "إدراج/تحرير رابط", RemoveLink : "إزالة رابط", -VisitLink : "افتح الرابط", Anchor : "إدراج/تحرير إشارة مرجعية", -AnchorDelete : "إزالة إشارة مرجعية", InsertImageLbl : "صورة", InsertImage : "إدراج/تحرير صورة", InsertFlashLbl : "فلاش", @@ -72,10 +70,6 @@ RightJustify : "محاذاة إلى اليمين", BlockJustify : "ضبط", DecreaseIndent : "إنقاص المسافة البادئة", IncreaseIndent : "زيادة المسافة البادئة", -Blockquote : "اقتباس", -CreateDiv : "إنشاء حاوية Div", -EditDiv : "تعديل حاوية Div", -DeleteDiv : "إزالة حاوية Div", Undo : "تراجع", Redo : "إعادة", NumberedListLbl : "تعداد رقمي", @@ -109,27 +103,20 @@ SelectionField : "قائمة منسدلة", ImageButton : "زر صورة", FitWindow : "تكبير حجم المحرر", -ShowBlocks : "مخطط تفصيلي", // Context Menu EditLink : "تحرير رابط", CellCM : "خلية", RowCM : "صف", ColumnCM : "عمود", -InsertRowAfter : "إدراج صف بعد", -InsertRowBefore : "إدراج صف قبل", +InsertRow : "إدراج صف", DeleteRows : "حذف صفوف", -InsertColumnAfter : "إدراج عمود بعد", -InsertColumnBefore : "إدراج عمود قبل", +InsertColumn : "إدراج عمود", DeleteColumns : "حذف أعمدة", -InsertCellAfter : "إدراج خلية بعد", -InsertCellBefore : "إدراج خلية قبل", +InsertCell : "إدراج خلية", DeleteCells : "حذف خلايا", MergeCells : "دمج خلايا", -MergeRight : "دمج لليمين", -MergeDown : "دمج للأسفل", -HorizontalSplitCell : "تقسيم الخلية أفقياً", -VerticalSplitCell : "تقسيم الخلية عمودياً", +SplitCell : "تقسيم خلية", TableDelete : "حذف الجدول", CellProperties : "خصائص الخلية", TableProperties : "خصائص الجدول", @@ -147,7 +134,7 @@ SelectionFieldProp : "خصائص القائمة المنسدلة", TextareaProp : "خصائص ناحية النص", FormProp : "خصائص النموذج", -FontFormats : "عادي;منسّق;دوس;العنوان 1;العنوان 2;العنوان 3;العنوان 4;العنوان 5;العنوان 6", +FontFormats : "عادي;منسّق;دوس;العنوان 1;العنوان 2;العنوان 3;العنوان 4;العنوان 5;العنوان 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "إنتظر قليلاً ريثما تتم معالَجة‏ XHTML. لن يستغرق طويلاً...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "لم أتمكن من العثور على طقم الأدو NoActiveX : "لتأمين متصفحك يجب أن تحدد بعض مميزات المحرر. يتوجب عليك تمكين الخيار \"Run ActiveX controls and plug-ins\". قد تواجة أخطاء وتلاحظ مميزات مفقودة", BrowseServerBlocked : "لايمكن فتح مصدر المتصفح. فضلا يجب التأكد بأن جميع موانع النوافذ المنبثقة معطلة", DialogBlocked : "لايمكن فتح نافذة الحوار . فضلا تأكد من أن مانع النوافذ المنبثة معطل .", -VisitLinkBlocked : "لا يمكن فتح نافذة جديدة. تأكد من إيقاف كل مانعي فتح النوافذ من العمل.", // Dialogs DlgBtnOK : "موافق", @@ -243,7 +229,7 @@ DlgLnkURL : "الموقع", DlgLnkAnchorSel : "اختر علامة مرجعية", DlgLnkAnchorByName : "حسب اسم العلامة", DlgLnkAnchorById : "حسب تعريف العنصر", -DlgLnkNoAnchors : "(لا يوجد علامات مرجعية في هذا المستند)", +DlgLnkNoAnchors : "<لا يوجد علامات مرجعية في هذا المستند>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "عنوان بريد إلكتروني", DlgLnkEMailSubject : "موضوع الرسالة", DlgLnkEMailBody : "محتوى الرسالة", @@ -308,11 +294,6 @@ DlgTableCellSpace : "تباعد الخلايا", DlgTableCellPad : "المسافة البادئة", DlgTableCaption : "الوصف", DlgTableSummary : "الخلاصة", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "خصائص الخلية", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "أعلى", DlgCellVerAlignMiddle : "وسط", DlgCellVerAlignBottom : "أسفل", DlgCellVerAlignBaseline : "على السطر", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "إمتداد الصفوف", DlgCellCollSpan : "إمتداد الأعمدة", DlgCellBackColor : "لون الخلفية", DlgCellBorderColor : "لون الحدود", DlgCellBtnSelect : "حدّد...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "بحث واستبدال", - // Find Dialog DlgFindTitle : "بحث", DlgFindFindBtn : "ابحث", @@ -369,9 +344,10 @@ PasteAsText : "لصق كنص بسيط", PasteFromWord : "لصق من وورد", DlgPasteMsg2 : "الصق داخل الصندوق بإستخدام زرّي (Ctrl+V) في لوحة المفاتيح، ثم اضغط زر موافق.", -DlgPasteSec : "نظراً لإعدادات الأمان الخاصة بمتصفحك، لن يتمكن هذا المحرر من الوصول لمحتوى حافظتك، لذا وجب عليك لصق المحتوى مرة أخرى في هذه النافذة.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "تجاهل تعريفات أسماء الخطوط", DlgPasteRemoveStyles : "إزالة تعريفات الأنماط", +DlgPasteCleanBox : "نظّف محتوى الصندوق", // Color Picker ColorAutomatic : "تلقائي", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "نبذة", DlgAboutBrowserInfoTab : "معلومات متصفحك", DlgAboutLicenseTab : "الترخيص", DlgAboutVersion : "الإصدار", -DlgAboutInfo : "لمزيد من المعلومات تفضل بزيارة", - -// Div Dialog -DlgDivGeneralTab : "عام", -DlgDivAdvancedTab : "متقدم", -DlgDivStyle : "المظهر", -DlgDivInlineStyle : "المظهر المضمن", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "لمزيد من المعلومات تفضل بزيارة" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/bg.js b/httemplate/elements/fckeditor/editor/lang/bg.js index 0a9022f0f..423bd02d7 100644 --- a/httemplate/elements/fckeditor/editor/lang/bg.js +++ b/httemplate/elements/fckeditor/editor/lang/bg.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Изтрий форматирането", InsertLinkLbl : "Връзка", InsertLink : "Добави/Редактирай връзка", RemoveLink : "Изтрий връзка", -VisitLink : "Open Link", //MISSING Anchor : "Добави/Редактирай котва", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "Изображение", InsertImage : "Добави/Редактирай изображение", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Подравняване в дясно", BlockJustify : "Двустранно подравняване", DecreaseIndent : "Намали отстъпа", IncreaseIndent : "Увеличи отстъпа", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Отмени", Redo : "Повтори", NumberedListLbl : "Нумериран списък", @@ -109,27 +103,20 @@ SelectionField : "Падащо меню с опции", ImageButton : "Бутон-изображение", FitWindow : "Maximize the editor size", //MISSING -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Редактирай връзка", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "Добави ред", DeleteRows : "Изтрий редовете", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "Добави колона", DeleteColumns : "Изтрий колоните", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "Добави клетка", DeleteCells : "Изтрий клетките", MergeCells : "Обедини клетките", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "Раздели клетката", TableDelete : "Изтрий таблицата", CellProperties : "Параметри на клетката", TableProperties : "Параметри на таблицата", @@ -147,7 +134,7 @@ SelectionFieldProp : "Параметри на падащото меню с оп TextareaProp : "Параметри на текстовата област", FormProp : "Параметри на формуляра", -FontFormats : "Нормален;Форматиран;Адрес;Заглавие 1;Заглавие 2;Заглавие 3;Заглавие 4;Заглавие 5;Заглавие 6;Параграф (DIV)", +FontFormats : "Нормален;Форматиран;Адрес;Заглавие 1;Заглавие 2;Заглавие 3;Заглавие 4;Заглавие 5;Заглавие 6;Параграф (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Обработка на XHTML. Моля изчакайте...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Панелът \"%1\" не съществува", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "ОК", @@ -243,7 +229,7 @@ DlgLnkURL : "Пълен път (URL)", DlgLnkAnchorSel : "Изберете котва", DlgLnkAnchorByName : "По име на котвата", DlgLnkAnchorById : "По идентификатор на елемент", -DlgLnkNoAnchors : "(Няма котви в текущия документ)", +DlgLnkNoAnchors : "<Няма котви в текущия документ>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Адрес за е-поща", DlgLnkEMailSubject : "Тема на писмото", DlgLnkEMailBody : "Текст на писмото", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Разстояние между клетките", DlgTableCellPad : "Отстъп на съдържанието в клетките", DlgTableCaption : "Заглавие", DlgTableSummary : "Резюме", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Параметри на клетката", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Горе", DlgCellVerAlignMiddle : "По средата", DlgCellVerAlignBottom : "Долу", DlgCellVerAlignBaseline : "По базовата линия", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "повече от един ред", DlgCellCollSpan : "повече от една колона", DlgCellBackColor : "фонов цвят", DlgCellBorderColor : "цвят на рамката", DlgCellBtnSelect : "Изберете...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Търси", DlgFindFindBtn : "Търси", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Вмъкнете тук съдъжанието с клавиат DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Игнорирай шрифтовите дефиниции", DlgPasteRemoveStyles : "Изтрий стиловите дефиниции", +DlgPasteCleanBox : "Изчисти", // Color Picker ColorAutomatic : "По подразбиране", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "За", DlgAboutBrowserInfoTab : "Информация за браузъра", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "версия", -DlgAboutInfo : "За повече информация посетете", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "За повече информация посетете" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/bn.js b/httemplate/elements/fckeditor/editor/lang/bn.js index a919b987b..8f76754ae 100644 --- a/httemplate/elements/fckeditor/editor/lang/bn.js +++ b/httemplate/elements/fckeditor/editor/lang/bn.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "ফরমেট সরাও", InsertLinkLbl : "লিংকের যুক্ত করার লেবেল", InsertLink : "লিংক যুক্ত কর", RemoveLink : "লিংক সরাও", -VisitLink : "Open Link", //MISSING Anchor : "নোঙ্গর", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "ছবির লেবেল যুক্ত কর", InsertImage : "ছবি যুক্ত কর", InsertFlashLbl : "ফ্লাশ লেবেল যুক্ত কর", @@ -72,10 +70,6 @@ RightJustify : "ডান দিকে ঘেঁষা", BlockJustify : "ব্লক জাস্টিফাই", DecreaseIndent : "ইনডেন্ট কমাও", IncreaseIndent : "ইনডেন্ট বাড়াও", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "আনডু", Redo : "রি-ডু", NumberedListLbl : "সাংখ্যিক লিস্টের লেবেল", @@ -109,27 +103,20 @@ SelectionField : "বাছাই ফীল্ড", ImageButton : "ছবির বাটন", FitWindow : "উইন্ডো ফিট কর", -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "লিংক সম্পাদন", CellCM : "সেল", RowCM : "রো", ColumnCM : "কলাম", -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "রো যুক্ত কর", DeleteRows : "রো মুছে দাও", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "কলাম যুক্ত কর", DeleteColumns : "কলাম মুছে দাও", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "সেল যুক্ত কর", DeleteCells : "সেল মুছে দাও", MergeCells : "সেল জোড়া দাও", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "সেল আলাদা কর", TableDelete : "টেবিল ডিলীট কর", CellProperties : "সেলের প্রোপার্টিজ", TableProperties : "টেবিল প্রোপার্টি", @@ -147,7 +134,7 @@ SelectionFieldProp : "বাছাই ফীল্ড প্রোপার্ TextareaProp : "টেক্সট এরিয়া প্রোপার্টি", FormProp : "ফর্ম প্রোপার্টি", -FontFormats : "সাধারণ;ফর্মেটেড;ঠিকানা;শীর্ষক ১;শীর্ষক ২;শীর্ষক ৩;শীর্ষক ৪;শীর্ষক ৫;শীর্ষক ৬;শীর্ষক (DIV)", +FontFormats : "সাধারণ;ফর্মেটেড;ঠিকানা;শীর্ষক ১;শীর্ষক ২;শীর্ষক ৩;শীর্ষক ৪;শীর্ষক ৫;শীর্ষক ৬;শীর্ষক (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML প্রসেস করা হচ্ছে", @@ -161,7 +148,6 @@ UnknownToolbarSet : "টুলবার সেট \"%1\" এর অস্তি NoActiveX : "আপনার ব্রাউজারের সুরক্ষা সেটিংস কারনে এডিটরের কিছু ফিচার পাওয়া নাও যেতে পারে। আপনাকে অবশ্যই \"Run ActiveX controls and plug-ins\" এনাবেল করে নিতে হবে। আপনি ভুলভ্রান্তি কিছু কিছু ফিচারের অনুপস্থিতি উপলব্ধি করতে পারেন।", BrowseServerBlocked : "রিসোর্স ব্রাউজার খোলা গেল না। নিশ্চিত করুন যে সব পপআপ ব্লকার বন্ধ করা আছে।", DialogBlocked : "ডায়ালগ ইউন্ডো খোলা গেল না। নিশ্চিত করুন যে সব পপআপ ব্লকার বন্ধ করা আছে।", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "ওকে", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "নোঙর বাছাই", DlgLnkAnchorByName : "নোঙরের নাম দিয়ে", DlgLnkAnchorById : "নোঙরের আইডি দিয়ে", -DlgLnkNoAnchors : "(No anchors available in the document)", //MISSING +DlgLnkNoAnchors : "<ডকুমেন্টে আর কোন নোঙর নেই>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "ইমেইল ঠিকানা", DlgLnkEMailSubject : "মেসেজের বিষয়", DlgLnkEMailBody : "মেসেজের দেহ", @@ -308,11 +294,6 @@ DlgTableCellSpace : "সেল স্পেস", DlgTableCellPad : "সেল প্যাডিং", DlgTableCaption : "শীর্ষক", DlgTableSummary : "সারাংশ", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "সেল প্রোপার্টি", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "উপর", DlgCellVerAlignMiddle : "মধ্য", DlgCellVerAlignBottom : "নীচে", DlgCellVerAlignBaseline : "মূলরেখা", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "রো স্প্যান", DlgCellCollSpan : "কলাম স্প্যান", DlgCellBackColor : "ব্যাকগ্রাউন্ড রং", DlgCellBorderColor : "বর্ডারের রং", DlgCellBtnSelect : "বাছাই কর", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "খোঁজো", DlgFindFindBtn : "খোঁজো", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "অনুগ্রহ করে নীচের বাক্স DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "ফন্ট ফেস ডেফিনেশন ইগনোর করুন", DlgPasteRemoveStyles : "স্টাইল ডেফিনেশন সরিয়ে দিন", +DlgPasteCleanBox : "বাক্স পরিষ্কার করুন", // Color Picker ColorAutomatic : "অটোমেটিক", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "কে বানিয়েছে", DlgAboutBrowserInfoTab : "ব্রাউজারের ব্যাপারে তথ্য", DlgAboutLicenseTab : "লাইসেন্স", DlgAboutVersion : "ভার্সন", -DlgAboutInfo : "আরও তথ্যের জন্য যান", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "আরও তথ্যের জন্য যান" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/bs.js b/httemplate/elements/fckeditor/editor/lang/bs.js index 361ca5889..fbaa45191 100644 --- a/httemplate/elements/fckeditor/editor/lang/bs.js +++ b/httemplate/elements/fckeditor/editor/lang/bs.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "PoniÅ¡ti format", InsertLinkLbl : "Link", InsertLink : "Ubaci/Izmjeni link", RemoveLink : "IzbriÅ¡i link", -VisitLink : "Open Link", //MISSING Anchor : "Insert/Edit Anchor", //MISSING -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "Slika", InsertImage : "Ubaci/Izmjeni sliku", InsertFlashLbl : "Flash", //MISSING @@ -72,10 +70,6 @@ RightJustify : "Desno poravnanje", BlockJustify : "Puno poravnanje", DecreaseIndent : "Smanji uvod", IncreaseIndent : "Poveæaj uvod", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Vrati", Redo : "Ponovi", NumberedListLbl : "Numerisana lista", @@ -109,27 +103,20 @@ SelectionField : "Selection Field", //MISSING ImageButton : "Image Button", //MISSING FitWindow : "Maximize the editor size", //MISSING -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Izmjeni link", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "Ubaci red", DeleteRows : "BriÅ¡i redove", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "Ubaci kolonu", DeleteColumns : "BriÅ¡i kolone", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "Ubaci æeliju", DeleteCells : "BriÅ¡i æelije", MergeCells : "Spoji æelije", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "Razdvoji æeliju", TableDelete : "Delete Table", //MISSING CellProperties : "Svojstva æelije", TableProperties : "Svojstva tabele", @@ -147,7 +134,7 @@ SelectionFieldProp : "Selection Field Properties", //MISSING TextareaProp : "Textarea Properties", //MISSING FormProp : "Form Properties", //MISSING -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Procesiram XHTML. Molim saèekajte...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Traka sa alatima \"%1\" ne postoji", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Izaberi sidro", DlgLnkAnchorByName : "Po nazivu sidra", DlgLnkAnchorById : "Po Id-u elementa", -DlgLnkNoAnchors : "(Nema dostupnih sidra na stranici)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Adresa", DlgLnkEMailSubject : "Subjekt poruke", DlgLnkEMailBody : "Poruka", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Razmak æelija", DlgTableCellPad : "Uvod æelija", DlgTableCaption : "Naslov", DlgTableSummary : "Summary", //MISSING -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Svojstva æelije", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Gore", DlgCellVerAlignMiddle : "Sredina", DlgCellVerAlignBottom : "Dno", DlgCellVerAlignBaseline : "Bazno", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Spajanje æelija", DlgCellCollSpan : "Spajanje kolona", DlgCellBackColor : "Boja pozadine", DlgCellBorderColor : "Boja okvira", DlgCellBtnSelect : "Selektuj...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Naði", DlgFindFindBtn : "Naði", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Please paste inside the following box using the keyboard ( with ( and ) DlgLnkEMail : "Adreça de correu electrònic", DlgLnkEMailSubject : "Assumpte del missatge", DlgLnkEMailBody : "Cos del missatge", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Espaiat de cel·les", DlgTableCellPad : "Encoixinament de cel·les", DlgTableCaption : "Títol", DlgTableSummary : "Resum", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Propietats de la cel·la", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Color de fons", DlgCellBorderColor : "Color de la vora", DlgCellBtnSelect : "Seleccioneu...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Cerca i reemplaça", - // Find Dialog DlgFindTitle : "Cerca", DlgFindFindBtn : "Cerca", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Si us plau, enganxeu dins del següent camp utilitzant el teclat DlgPasteSec : "A causa de la configuració de seguretat del vostre navegador, l'editor no pot accedir al porta-retalls directament. Enganxeu-ho un altre cop en aquesta finestra.", DlgPasteIgnoreFont : "Ignora definicions de font", DlgPasteRemoveStyles : "Elimina definicions d'estil", +DlgPasteCleanBox : "Neteja camp", // Color Picker ColorAutomatic : "Automàtic", @@ -387,20 +363,20 @@ DlgAnchorErrorName : "Si us plau, escriviu el nom de l'ancora", // Speller Pages Dialog DlgSpellNotInDic : "No és al diccionari", -DlgSpellChangeTo : "Reemplaça amb", +DlgSpellChangeTo : "Canvia a", DlgSpellBtnIgnore : "Ignora", DlgSpellBtnIgnoreAll : "Ignora-les totes", DlgSpellBtnReplace : "Canvia", DlgSpellBtnReplaceAll : "Canvia-les totes", DlgSpellBtnUndo : "Desfés", -DlgSpellNoSuggestions : "Cap suggeriment", -DlgSpellProgress : "Verificació ortogràfica en curs...", -DlgSpellNoMispell : "Verificació ortogràfica acabada: no hi ha cap paraula mal escrita", -DlgSpellNoChanges : "Verificació ortogràfica: no s'ha canviat cap paraula", -DlgSpellOneChange : "Verificació ortogràfica: s'ha canviat una paraula", -DlgSpellManyChanges : "Verificació ortogràfica: s'han canviat %1 paraules", +DlgSpellNoSuggestions : "Cap sugerència", +DlgSpellProgress : "Comprovació ortogràfica en progrés", +DlgSpellNoMispell : "Comprovació ortogràfica completada", +DlgSpellNoChanges : "Comprovació ortogràfica: cap paraulada canviada", +DlgSpellOneChange : "Comprovació ortogràfica: una paraula canviada", +DlgSpellManyChanges : "Comprovació ortogràfica %1 paraules canviades", -IeSpellDownload : "Verificació ortogràfica no instal·lada. Voleu descarregar-ho ara?", +IeSpellDownload : "Comprovació ortogràfica no instal·lada. Voleu descarregar-ho ara?", // Button Dialog DlgButtonText : "Text (Valor)", @@ -443,8 +419,8 @@ DlgTextareaRows : "Files", // Text Field Dialog DlgTextName : "Nom", DlgTextValue : "Valor", -DlgTextCharWidth : "Amplada", -DlgTextMaxChars : "Nombre màxim de caràcters", +DlgTextCharWidth : "Amplada de caràcter", +DlgTextMaxChars : "Màxim de caràcters", DlgTextType : "Tipus", DlgTextTypeText : "Text", DlgTextTypePass : "Contrasenya", @@ -464,14 +440,14 @@ DlgLstTypeSquare : "Quadrat", DlgLstTypeNumbers : "Números (1, 2, 3)", DlgLstTypeLCase : "Lletres minúscules (a, b, c)", DlgLstTypeUCase : "Lletres majúscules (A, B, C)", -DlgLstTypeSRoman : "Números romans en minúscules (i, ii, iii)", -DlgLstTypeLRoman : "Números romans en majúscules (I, II, III)", +DlgLstTypeSRoman : "Números romans minúscules (i, ii, iii)", +DlgLstTypeLRoman : "Números romans majúscules (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "General", DlgDocBackTab : "Fons", DlgDocColorsTab : "Colors i marges", -DlgDocMetaTab : "Metadades", +DlgDocMetaTab : "Dades Meta", DlgDocPageTitle : "Títol de la pàgina", DlgDocLangDir : "Direcció idioma", @@ -514,7 +490,7 @@ DlgDocPreview : "Vista prèvia", // Templates Dialog Templates : "Plantilles", DlgTemplatesTitle : "Contingut plantilles", -DlgTemplatesSelMsg : "Si us plau, seleccioneu la plantilla per obrir a l'editor
(el contingut actual no serà enregistrat):", +DlgTemplatesSelMsg : "Si us plau, seleccioneu la plantilla per obrir en l'editor
(el contingut actual no serà enregistrat):", DlgTemplatesLoading : "Carregant la llista de plantilles. Si us plau, espereu...", DlgTemplatesNoTpl : "(No hi ha plantilles definides)", DlgTemplatesReplace : "Reemplaça el contingut actual", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Quant a", DlgAboutBrowserInfoTab : "Informació del navegador", DlgAboutLicenseTab : "Llicència", DlgAboutVersion : "versió", -DlgAboutInfo : "Per a més informació aneu a", - -// Div Dialog -DlgDivGeneralTab : "General", -DlgDivAdvancedTab : "Avançat", -DlgDivStyle : "Estil", -DlgDivInlineStyle : "Estil en línia", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Per a més informació aneu a" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/cs.js b/httemplate/elements/fckeditor/editor/lang/cs.js index 10bef9d69..49b5f87c0 100644 --- a/httemplate/elements/fckeditor/editor/lang/cs.js +++ b/httemplate/elements/fckeditor/editor/lang/cs.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Odstranit formátování", InsertLinkLbl : "Odkaz", InsertLink : "Vložit/změnit odkaz", RemoveLink : "Odstranit odkaz", -VisitLink : "Otevřít odkaz", Anchor : "Vložít/změnit záložku", -AnchorDelete : "Odstranit kotvu", InsertImageLbl : "Obrázek", InsertImage : "Vložit/změnit obrázek", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Zarovnat vpravo", BlockJustify : "Zarovnat do bloku", DecreaseIndent : "Zmenšit odsazení", IncreaseIndent : "Zvětšit odsazení", -Blockquote : "Citace", -CreateDiv : "Vytvořit Div kontejner", -EditDiv : "Upravit Div kontejner", -DeleteDiv : "Odstranit Div kontejner", Undo : "Zpět", Redo : "Znovu", NumberedListLbl : "Číslování", @@ -109,27 +103,20 @@ SelectionField : "Seznam", ImageButton : "Obrázkové tlačítko", FitWindow : "Maximalizovat velikost editoru", -ShowBlocks : "Ukázat bloky", // Context Menu EditLink : "Změnit odkaz", CellCM : "Buňka", RowCM : "Řádek", ColumnCM : "Sloupec", -InsertRowAfter : "Vložit řádek za", -InsertRowBefore : "Vložit řádek před", -DeleteRows : "Smazat řádky", -InsertColumnAfter : "Vložit sloupec za", -InsertColumnBefore : "Vložit sloupec před", +InsertRow : "Vložit řádek", +DeleteRows : "Smazat řádek", +InsertColumn : "Vložit sloupec", DeleteColumns : "Smazat sloupec", -InsertCellAfter : "Vložit buňku za", -InsertCellBefore : "Vložit buňku před", +InsertCell : "Vložit buňku", DeleteCells : "Smazat buňky", MergeCells : "Sloučit buňky", -MergeRight : "Sloučit doprava", -MergeDown : "Sloučit dolů", -HorizontalSplitCell : "Rozdělit buňky vodorovně", -VerticalSplitCell : "Rozdělit buňky svisle", +SplitCell : "Rozdělit buňku", TableDelete : "Smazat tabulku", CellProperties : "Vlastnosti buňky", TableProperties : "Vlastnosti tabulky", @@ -147,7 +134,7 @@ SelectionFieldProp : "Vlastnosti seznamu", TextareaProp : "Vlastnosti textové oblasti", FormProp : "Vlastnosti formuláře", -FontFormats : "Normální;Naformátováno;Adresa;Nadpis 1;Nadpis 2;Nadpis 3;Nadpis 4;Nadpis 5;Nadpis 6;Normální (DIV)", +FontFormats : "Normální;Formátovaný;Adresa;Nadpis 1;Nadpis 2;Nadpis 3;Nadpis 4;Nadpis 5;Nadpis 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Probíhá zpracování XHTML. Prosím čekejte...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Panel nástrojů \"%1\" neexistuje", NoActiveX : "Nastavení bezpečnosti Vašeho prohlížeče omezuje funkčnost některých jeho možností. Je třeba zapnout volbu \"Spouštět ovládáací prvky ActiveX a moduly plug-in\", jinak nebude možné využívat všechny dosputné schopnosti editoru.", BrowseServerBlocked : "Průzkumník zdrojů nelze otevřít. Prověřte, zda nemáte aktivováno blokování popup oken.", DialogBlocked : "Nelze otevřít dialogové okno. Prověřte, zda nemáte aktivováno blokování popup oken.", -VisitLinkBlocked : "Není možné otevřít nové okno. Prověřte, zda všechny nástroje pro blokování vyskakovacích oken jsou vypnuty.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Vybrat kotvu", DlgLnkAnchorByName : "Podle jména kotvy", DlgLnkAnchorById : "Podle Id objektu", -DlgLnkNoAnchors : "(Ve stránce není definována žádná kotva!)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mailová adresa", DlgLnkEMailSubject : "Předmět zprávy", DlgLnkEMailBody : "Tělo zprávy", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Vzdálenost buněk", DlgTableCellPad : "Odsazení obsahu", DlgTableCaption : "Popis", DlgTableSummary : "Souhrn", -DlgTableHeaders : "Záhlaví", -DlgTableHeadersNone : "Žádné", -DlgTableHeadersColumn : "První sloupec", -DlgTableHeadersRow : "První řádek", -DlgTableHeadersBoth : "Oboje", // Table Cell Dialog DlgCellTitle : "Vlastnosti buňky", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Nahoru", DlgCellVerAlignMiddle : "Doprostřed", DlgCellVerAlignBottom : "Dolů", DlgCellVerAlignBaseline : "Na účaří", -DlgCellType : "Typ buňky", -DlgCellTypeData : "Data", -DlgCellTypeHeader : "Zálaví", DlgCellRowSpan : "Sloučené řádky", DlgCellCollSpan : "Sloučené sloupce", DlgCellBackColor : "Barva pozadí", DlgCellBorderColor : "Barva ohraničení", DlgCellBtnSelect : "Výběr...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Najít a nahradit", - // Find Dialog DlgFindTitle : "Hledat", DlgFindFindBtn : "Hledat", @@ -369,9 +344,10 @@ PasteAsText : "Vložit jako čistý text", PasteFromWord : "Vložit text z Wordu", DlgPasteMsg2 : "Do následujícího pole vložte požadovaný obsah pomocí klávesnice (Ctrl+V) a stiskněte OK.", -DlgPasteSec : "Z důvodů nastavení bezpečnosti Vašeho prohlížeče nemůže editor přistupovat přímo do schránky. Obsah schránky prosím vložte znovu do tohoto okna.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorovat písmo", DlgPasteRemoveStyles : "Odstranit styly", +DlgPasteCleanBox : "Vyčistit", // Color Picker ColorAutomatic : "Automaticky", @@ -456,7 +432,7 @@ DlgHiddenValue : "Hodnota", // Bulleted List Dialog BulletedListProp : "Vlastnosti odrážek", NumberedListProp : "Vlastnosti číslovaného seznamu", -DlgLstStart : "Začátek", +DlgLstStart : "Start", //MISSING DlgLstType : "Typ", DlgLstTypeCircle : "Kružnice", DlgLstTypeDisc : "Kruh", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "O aplikaci", DlgAboutBrowserInfoTab : "Informace o prohlížeči", DlgAboutLicenseTab : "Licence", DlgAboutVersion : "verze", -DlgAboutInfo : "Více informací získáte na", - -// Div Dialog -DlgDivGeneralTab : "Obecné", -DlgDivAdvancedTab : "Rozšířené", -DlgDivStyle : "Styl", -DlgDivInlineStyle : "Vložený styl", - -ScaytTitle : "SCAYT", -ScaytTitleOptions : "Nastavení", -ScaytTitleLangs : "Jazyky", -ScaytTitleAbout : "O aplikaci" -}; +DlgAboutInfo : "Více informací získáte na" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/da.js b/httemplate/elements/fckeditor/editor/lang/da.js index 9e935b84f..814324116 100644 --- a/httemplate/elements/fckeditor/editor/lang/da.js +++ b/httemplate/elements/fckeditor/editor/lang/da.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Fjern formatering", InsertLinkLbl : "Hyperlink", InsertLink : "Indsæt/rediger hyperlink", RemoveLink : "Fjern hyperlink", -VisitLink : "Åbn hyperlink", Anchor : "Indsæt/rediger bogmærke", -AnchorDelete : "Fjern bogmærke", InsertImageLbl : "Indsæt billede", InsertImage : "Indsæt/rediger billede", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Højrestillet", BlockJustify : "Lige margener", DecreaseIndent : "Formindsk indrykning", IncreaseIndent : "Forøg indrykning", -Blockquote : "Blokcitat", -CreateDiv : "Opret div container", -EditDiv : "Rediger div container", -DeleteDiv : "Fjern div container", Undo : "Fortryd", Redo : "Annuller fortryd", NumberedListLbl : "Talopstilling", @@ -109,27 +103,20 @@ SelectionField : "Indsæt liste", ImageButton : "Indsæt billedknap", FitWindow : "Maksimer editor vinduet", -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Rediger hyperlink", CellCM : "Celle", RowCM : "Række", ColumnCM : "Kolonne", -InsertRowAfter : "Indsæt række efter", -InsertRowBefore : "Indsæt række før", +InsertRow : "Indsæt række", DeleteRows : "Slet række", -InsertColumnAfter : "Indsæt kolonne efter", -InsertColumnBefore : "Indsæt kolonne før", +InsertColumn : "Indsæt kolonne", DeleteColumns : "Slet kolonne", -InsertCellAfter : "Indsæt celle efter", -InsertCellBefore : "Indsæt celle før", +InsertCell : "Indsæt celle", DeleteCells : "Slet celle", MergeCells : "Flet celler", -MergeRight : "Flet til højre", -MergeDown : "Flet nedad", -HorizontalSplitCell : "Del celle vandret", -VerticalSplitCell : "Del celle lodret", +SplitCell : "Opdel celle", TableDelete : "Slet tabel", CellProperties : "Egenskaber for celle", TableProperties : "Egenskaber for tabel", @@ -147,7 +134,7 @@ SelectionFieldProp : "Egenskaber for liste", TextareaProp : "Egenskaber for tekstboks", FormProp : "Egenskaber for formular", -FontFormats : "Normal;Formateret;Adresse;Overskrift 1;Overskrift 2;Overskrift 3;Overskrift 4;Overskrift 5;Overskrift 6;Normal (DIV)", +FontFormats : "Normal;Formateret;Adresse;Overskrift 1;Overskrift 2;Overskrift 3;Overskrift 4;Overskrift 5;Overskrift 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Behandler XHTML...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Værktøjslinjen \"%1\" eksisterer ikke!", NoActiveX : "Din browsers sikkerhedsindstillinger begrænser nogle af editorens muligheder.
Slå \"Kør ActiveX-objekter og plug-ins\" til, ellers vil du opleve fejl og manglende muligheder.", BrowseServerBlocked : "Browseren kunne ikke åbne de nødvendige ressourcer!
Slå pop-up blokering fra.", DialogBlocked : "Dialogvinduet kunne ikke åbnes!
Slå pop-up blokering fra.", -VisitLinkBlocked : "Det var ikke muligt at åbne et nyt vindue. Tjek, at ingen popup-blokkere er aktive.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Vælg et anker", DlgLnkAnchorByName : "Efter anker navn", DlgLnkAnchorById : "Efter element Id", -DlgLnkNoAnchors : "(Ingen bogmærker dokumentet)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-mailadresse", DlgLnkEMailSubject : "Emne", DlgLnkEMailBody : "Brødtekst", @@ -276,7 +262,7 @@ DlgLnkPopTop : "Position fra toppen", DlnLnkMsgNoUrl : "Indtast hyperlink URL!", DlnLnkMsgNoEMail : "Indtast e-mailaddresse!", DlnLnkMsgNoAnchor : "Vælg bogmærke!", -DlnLnkMsgInvPopName : "Navnet på popup'en skal starte med et bogstav og må ikke indeholde mellemrum", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Vælg farve", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Celleafstand", DlgTableCellPad : "Cellemargen", DlgTableCaption : "Titel", DlgTableSummary : "Resume", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Egenskaber for celle", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Øverst", DlgCellVerAlignMiddle : "Centreret", DlgCellVerAlignBottom : "Nederst", DlgCellVerAlignBaseline : "Grundlinje", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Højde i antal rækker", DlgCellCollSpan : "Bredde i antal kolonner", DlgCellBackColor : "Baggrundsfarve", DlgCellBorderColor : "Rammefarve", DlgCellBtnSelect : "Vælg...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Søg og erstat", - // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", @@ -369,9 +344,10 @@ PasteAsText : "Indsæt som ikke-formateret tekst", PasteFromWord : "Indsæt fra Word", DlgPasteMsg2 : "Indsæt i feltet herunder (Ctrl+V) og klik OK.", -DlgPasteSec : "På grund af browserens sikkerhedsindstillinger kan editoren ikke tilgå udklipsholderen direkte. Du skal indsætte udklipsholderens indhold i dette vindue igen.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorer font definitioner", DlgPasteRemoveStyles : "Ignorer typografi", +DlgPasteCleanBox : "Slet indhold", // Color Picker ColorAutomatic : "Automatisk", @@ -405,9 +381,9 @@ IeSpellDownload : "Stavekontrol ikke installeret.
Vil du hente den nu?", // Button Dialog DlgButtonText : "Tekst", DlgButtonType : "Type", -DlgButtonTypeBtn : "Knap", -DlgButtonTypeSbm : "Send", -DlgButtonTypeRst : "Nulstil", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Navn", @@ -456,7 +432,7 @@ DlgHiddenValue : "Værdi", // Bulleted List Dialog BulletedListProp : "Egenskaber for punktopstilling", NumberedListProp : "Egenskaber for talopstilling", -DlgLstStart : "Start", +DlgLstStart : "Start", //MISSING DlgLstType : "Type", DlgLstTypeCircle : "Cirkel", DlgLstTypeDisc : "Udfyldt cirkel", @@ -479,15 +455,15 @@ DlgDocLangDirLTR : "Fra venstre mod højre (LTR)", DlgDocLangDirRTL : "Fra højre mod venstre (RTL)", DlgDocLangCode : "Landekode", DlgDocCharSet : "Tegnsæt kode", -DlgDocCharSetCE : "Centraleuropæisk", -DlgDocCharSetCT : "Traditionel kinesisk (Big5)", -DlgDocCharSetCR : "Kyrillisk", -DlgDocCharSetGR : "Græsk", -DlgDocCharSetJP : "Japansk", -DlgDocCharSetKR : "Koreansk", -DlgDocCharSetTR : "Tyrkisk", -DlgDocCharSetUN : "Unicode (UTF-8)", -DlgDocCharSetWE : "Vesteuropæisk", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Anden tegnsæt kode", DlgDocDocType : "Dokumenttype kategori", @@ -517,23 +493,12 @@ DlgTemplatesTitle : "Indholdsskabeloner", DlgTemplatesSelMsg : "Vælg den skabelon, som skal åbnes i editoren.
(Nuværende indhold vil blive overskrevet!):", DlgTemplatesLoading : "Henter liste over skabeloner...", DlgTemplatesNoTpl : "(Der er ikke defineret nogen skabelon!)", -DlgTemplatesReplace : "Erstat det faktiske indhold", +DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Om", DlgAboutBrowserInfoTab : "Generelt", DlgAboutLicenseTab : "Licens", DlgAboutVersion : "version", -DlgAboutInfo : "For yderlig information gå til", - -// Div Dialog -DlgDivGeneralTab : "Generelt", -DlgDivAdvancedTab : "Avanceret", -DlgDivStyle : "Style", -DlgDivInlineStyle : "Inline style", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "For yderlig information gå til" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/de.js b/httemplate/elements/fckeditor/editor/lang/de.js index 774fcd759..2848d3462 100644 --- a/httemplate/elements/fckeditor/editor/lang/de.js +++ b/httemplate/elements/fckeditor/editor/lang/de.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Formatierungen entfernen", InsertLinkLbl : "Link", InsertLink : "Link einfügen/editieren", RemoveLink : "Link entfernen", -VisitLink : "Link aufrufen", Anchor : "Anker einfügen/editieren", -AnchorDelete : "Anker entfernen", InsertImageLbl : "Bild", InsertImage : "Bild einfügen/editieren", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Rechtsbündig", BlockJustify : "Blocksatz", DecreaseIndent : "Einzug verringern", IncreaseIndent : "Einzug erhöhen", -Blockquote : "Zitatblock", -CreateDiv : "Erzeuge Div Block", -EditDiv : "Bearbeite Div Block", -DeleteDiv : "Entferne Div Block", Undo : "Rückgängig", Redo : "Wiederherstellen", NumberedListLbl : "Nummerierte Liste", @@ -91,7 +85,7 @@ FontSize : "Größe", TextColor : "Textfarbe", BGColor : "Hintergrundfarbe", Source : "Quellcode", -Find : "Suchen", +Find : "Finden", Replace : "Ersetzen", SpellCheck : "Rechtschreibprüfung", UniversalKeyboard : "Universal-Tastatur", @@ -109,45 +103,38 @@ SelectionField : "Auswahlfeld", ImageButton : "Bildbutton", FitWindow : "Editor maximieren", -ShowBlocks : "Blöcke anzeigen", // Context Menu EditLink : "Link editieren", CellCM : "Zelle", RowCM : "Zeile", ColumnCM : "Spalte", -InsertRowAfter : "Zeile unterhalb einfügen", -InsertRowBefore : "Zeile oberhalb einfügen", +InsertRow : "Zeile einfügen", DeleteRows : "Zeile entfernen", -InsertColumnAfter : "Spalte rechts danach einfügen", -InsertColumnBefore : "Spalte links davor einfügen", +InsertColumn : "Spalte einfügen", DeleteColumns : "Spalte löschen", -InsertCellAfter : "Zelle danach einfügen", -InsertCellBefore : "Zelle davor einfügen", +InsertCell : "Zelle einfügen", DeleteCells : "Zelle löschen", -MergeCells : "Zellen verbinden", -MergeRight : "nach rechts verbinden", -MergeDown : "nach unten verbinden", -HorizontalSplitCell : "Zelle horizontal teilen", -VerticalSplitCell : "Zelle vertikal teilen", +MergeCells : "Zellen vereinen", +SplitCell : "Zelle teilen", TableDelete : "Tabelle löschen", -CellProperties : "Zellen-Eigenschaften", -TableProperties : "Tabellen-Eigenschaften", -ImageProperties : "Bild-Eigenschaften", -FlashProperties : "Flash-Eigenschaften", - -AnchorProp : "Anker-Eigenschaften", -ButtonProp : "Button-Eigenschaften", -CheckboxProp : "Checkbox-Eigenschaften", -HiddenFieldProp : "Verstecktes Feld-Eigenschaften", -RadioButtonProp : "Optionsfeld-Eigenschaften", -ImageButtonProp : "Bildbutton-Eigenschaften", +CellProperties : "Zellen Eigenschaften", +TableProperties : "Tabellen Eigenschaften", +ImageProperties : "Bild Eigenschaften", +FlashProperties : "Flash Eigenschaften", + +AnchorProp : "Anker Eigenschaften", +ButtonProp : "Button Eigenschaften", +CheckboxProp : "Checkbox Eigenschaften", +HiddenFieldProp : "Verstecktes Feld Eigenschaften", +RadioButtonProp : "Optionsfeld Eigenschaften", +ImageButtonProp : "Bildbutton Eigenschaften", TextFieldProp : "Textfeld (einzeilig) Eigenschaften", -SelectionFieldProp : "Auswahlfeld-Eigenschaften", +SelectionFieldProp : "Auswahlfeld Eigenschaften", TextareaProp : "Textfeld (mehrzeilig) Eigenschaften", -FormProp : "Formular-Eigenschaften", +FormProp : "Formular Eigenschaften", -FontFormats : "Normal;Formatiert;Addresse;Überschrift 1;Überschrift 2;Überschrift 3;Überschrift 4;Überschrift 5;Überschrift 6;Normal (DIV)", +FontFormats : "Normal;Formatiert;Addresse;Überschrift 1;Überschrift 2;Überschrift 3;Überschrift 4;Überschrift 5;Überschrift 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Bearbeite XHTML. Bitte warten...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Menüleiste \"%1\" existiert nicht", NoActiveX : "Die Sicherheitseinstellungen Ihres Browsers beschränken evtl. einige Funktionen des Editors. Aktivieren Sie die Option \"ActiveX-Steuerelemente und Plugins ausführen\" in den Sicherheitseinstellungen, um diese Funktionen nutzen zu können", BrowseServerBlocked : "Ein Auswahlfenster konnte nicht geöffnet werden. Stellen Sie sicher, das alle Popup-Blocker ausgeschaltet sind.", DialogBlocked : "Das Dialog-Fenster konnte nicht geöffnet werden. Stellen Sie sicher, das alle Popup-Blocker ausgeschaltet sind.", -VisitLinkBlocked : "Es war leider nicht möglich ein neues Fenster zu öffnen. Bitte versichern Sie sich das der Popup-Blocker ausgeschaltet ist.", // Dialogs DlgBtnOK : "OK", @@ -174,24 +160,24 @@ DlgInfoTab : "Info", DlgAlertUrl : "Bitte tragen Sie die URL ein", // General Dialogs Labels -DlgGenNotSet : "", +DlgGenNotSet : "< nichts >", DlgGenId : "ID", DlgGenLangDir : "Schreibrichtung", DlgGenLangDirLtr : "Links nach Rechts (LTR)", DlgGenLangDirRtl : "Rechts nach Links (RTL)", DlgGenLangCode : "Sprachenkürzel", -DlgGenAccessKey : "Zugriffstaste", +DlgGenAccessKey : "Schlüssel", DlgGenName : "Name", -DlgGenTabIndex : "Tab-Index", +DlgGenTabIndex : "Tab Index", DlgGenLongDescr : "Langform URL", DlgGenClass : "Stylesheet Klasse", DlgGenTitle : "Titel Beschreibung", -DlgGenContType : "Inhaltstyp", +DlgGenContType : "Content Beschreibung", DlgGenLinkCharset : "Ziel-Zeichensatz", DlgGenStyle : "Style", // Image Dialog -DlgImgTitle : "Bild-Eigenschaften", +DlgImgTitle : "Bild Eigenschaften", DlgImgInfoTab : "Bild-Info", DlgImgBtnUpload : "Zum Server senden", DlgImgURL : "Bildauswahl", @@ -202,8 +188,8 @@ DlgImgHeight : "Höhe", DlgImgLockRatio : "Größenverhältniss beibehalten", DlgBtnResetSize : "Größe zurücksetzen", DlgImgBorder : "Rahmen", -DlgImgHSpace : "Horizontal-Abstand", -DlgImgVSpace : "Vertikal-Abstand", +DlgImgHSpace : "H-Abstand", +DlgImgVSpace : "V-Abstand", DlgImgAlign : "Ausrichtung", DlgImgAlignLeft : "Links", DlgImgAlignAbsBottom: "Abs Unten", @@ -219,7 +205,7 @@ DlgImgAlertUrl : "Bitte geben Sie die Bild-URL an", DlgImgLinkTab : "Link", // Flash Dialog -DlgFlashTitle : "Flash-Eigenschaften", +DlgFlashTitle : "Flash Eigenschaften", DlgFlashChkPlay : "autom. Abspielen", DlgFlashChkLoop : "Endlosschleife", DlgFlashChkMenu : "Flash-Menü aktivieren", @@ -230,7 +216,7 @@ DlgFlashScaleFit : "Passgenau", // Link Dialog DlgLnkWindowTitle : "Link", -DlgLnkInfoTab : "Link-Info", +DlgLnkInfoTab : "Link Info", DlgLnkTargetTab : "Zielseite", DlgLnkType : "Link-Typ", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Anker auswählen", DlgLnkAnchorByName : "nach Anker Name", DlgLnkAnchorById : "nach Element Id", -DlgLnkNoAnchors : "(keine Anker im Dokument vorhanden)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Addresse", DlgLnkEMailSubject : "Betreffzeile", DlgLnkEMailBody : "Nachrichtentext", @@ -257,9 +243,9 @@ DlgLnkTargetBlank : "Neues Fenster (_blank)", DlgLnkTargetParent : "Oberes Fenster (_parent)", DlgLnkTargetSelf : "Gleiches Fenster (_self)", DlgLnkTargetTop : "Oberstes Fenster (_top)", -DlgLnkTargetFrameName : "Ziel-Fenster-Name", -DlgLnkPopWinName : "Pop-up Fenster-Name", -DlgLnkPopWinFeat : "Pop-up Fenster-Eigenschaften", +DlgLnkTargetFrameName : "Ziel-Fenster Name", +DlgLnkPopWinName : "Pop-up Fenster Name", +DlgLnkPopWinFeat : "Pop-up Fenster Eigenschaften", DlgLnkPopResize : "Vergrößerbar", DlgLnkPopLocation : "Adress-Leiste", DlgLnkPopMenu : "Menü-Leiste", @@ -291,12 +277,12 @@ DlgSmileyTitle : "Smiley auswählen", DlgSpecialCharTitle : "Sonderzeichen auswählen", // Table Dialog -DlgTableTitle : "Tabellen-Eigenschaften", +DlgTableTitle : "Tabellen Eigenschaften", DlgTableRows : "Zeile", DlgTableColumns : "Spalte", DlgTableBorder : "Rahmen", DlgTableAlign : "Ausrichtung", -DlgTableAlignNotSet : "", +DlgTableAlignNotSet : "", DlgTableAlignLeft : "Links", DlgTableAlignCenter : "Zentriert", DlgTableAlignRight : "Rechts", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Zellenabstand außen", DlgTableCellPad : "Zellenabstand innen", DlgTableCaption : "Überschrift", DlgTableSummary : "Inhaltsübersicht", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Zellen-Eigenschaften", @@ -321,32 +302,26 @@ DlgCellWidthPx : "Pixel", DlgCellWidthPc : "%", DlgCellHeight : "Höhe", DlgCellWordWrap : "Umbruch", -DlgCellWordWrapNotSet : "", +DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ja", DlgCellWordWrapNo : "Nein", DlgCellHorAlign : "Horizontale Ausrichtung", -DlgCellHorAlignNotSet : "", +DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Links", DlgCellHorAlignCenter : "Zentriert", DlgCellHorAlignRight: "Rechts", DlgCellVerAlign : "Vertikale Ausrichtung", -DlgCellVerAlignNotSet : "", +DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Oben", DlgCellVerAlignMiddle : "Mitte", DlgCellVerAlignBottom : "Unten", DlgCellVerAlignBaseline : "Grundlinie", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Zeilen zusammenfassen", DlgCellCollSpan : "Spalten zusammenfassen", DlgCellBackColor : "Hintergrundfarbe", DlgCellBorderColor : "Rahmenfarbe", DlgCellBtnSelect : "Auswahl...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Suchen und Ersetzen", - // Find Dialog DlgFindTitle : "Finden", DlgFindFindBtn : "Finden", @@ -368,20 +343,21 @@ PasteErrorCopy : "Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu PasteAsText : "Als Text einfügen", PasteFromWord : "Aus Word einfügen", -DlgPasteMsg2 : "Bitte fügen Sie den Text in der folgenden Box über die Tastatur (mit Strg+V) ein und bestätigen Sie mit OK.", -DlgPasteSec : "Aufgrund von Sicherheitsbeschränkungen Ihres Browsers kann der Editor nicht direkt auf die Zwischenablage zugreifen. Bitte fügen Sie den Inhalt erneut in diesem Fenster ein.", +DlgPasteMsg2 : "Bitte fügen Sie den Text in der folgenden Box über die Tastatur (mit Ctrl+V) ein und bestätigen Sie mit OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoriere Schriftart-Definitionen", DlgPasteRemoveStyles : "Entferne Style-Definitionen", +DlgPasteCleanBox : "Inhalt aufräumen", // Color Picker ColorAutomatic : "Automatisch", ColorMoreColors : "Weitere Farben...", // Document Properties -DocProps : "Dokument-Eigenschaften", +DocProps : "Dokument Eigenschaften", // Anchor Dialog -DlgAnchorTitle : "Anker-Eigenschaften", +DlgAnchorTitle : "Anker Eigenschaften", DlgAnchorName : "Anker Name", DlgAnchorErrorName : "Bitte geben Sie den Namen des Ankers ein", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Über", DlgAboutBrowserInfoTab : "Browser-Info", DlgAboutLicenseTab : "Lizenz", DlgAboutVersion : "Version", -DlgAboutInfo : "Für weitere Informationen siehe", - -// Div Dialog -DlgDivGeneralTab : "Allgemein", -DlgDivAdvancedTab : "Erweitert", -DlgDivStyle : "Style", -DlgDivInlineStyle : "Inline Style", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Für weitere Informationen siehe" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/el.js b/httemplate/elements/fckeditor/editor/lang/el.js index b5e42686e..90fefc48f 100644 --- a/httemplate/elements/fckeditor/editor/lang/el.js +++ b/httemplate/elements/fckeditor/editor/lang/el.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Αφαίρεση Μορφοποίησης", InsertLinkLbl : "Σύνδεσμος (Link)", InsertLink : "Εισαγωγή/Μεταβολή Συνδέσμου (Link)", RemoveLink : "Αφαίρεση Συνδέσμου (Link)", -VisitLink : "Open Link", //MISSING Anchor : "Εισαγωγή/επεξεργασία Anchor", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "Εικόνα", InsertImage : "Εισαγωγή/Μεταβολή Εικόνας", InsertFlashLbl : "Εισαγωγή Flash", @@ -72,10 +70,6 @@ RightJustify : "Στοίχιση Δεξιά", BlockJustify : "Πλήρης Στοίχιση (Block)", DecreaseIndent : "Μείωση Εσοχής", IncreaseIndent : "Αύξηση Εσοχής", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Αναίρεση", Redo : "Επαναφορά", NumberedListLbl : "Λίστα με Αριθμούς", @@ -109,27 +103,20 @@ SelectionField : "Πεδίο επιλογής", ImageButton : "Κουμπί εικόνας", FitWindow : "Μεγιστοποίηση προγράμματος", -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Μεταβολή Συνδέσμου (Link)", CellCM : "Κελί", RowCM : "Σειρά", ColumnCM : "Στήλη", -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "Εισαγωγή Γραμμής", DeleteRows : "Διαγραφή Γραμμών", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "Εισαγωγή Κολώνας", DeleteColumns : "Διαγραφή Κολωνών", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "Εισαγωγή Κελιού", DeleteCells : "Διαγραφή Κελιών", MergeCells : "Ενοποίηση Κελιών", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "Διαχωρισμός Κελιού", TableDelete : "Διαγραφή πίνακα", CellProperties : "Ιδιότητες Κελιού", TableProperties : "Ιδιότητες Πίνακα", @@ -147,7 +134,7 @@ SelectionFieldProp : "Ιδιότητες πεδίου επιλογής", TextareaProp : "Ιδιότητες περιοχής κειμένου", FormProp : "Ιδιότητες φόρμας", -FontFormats : "Κανονικό;Μορφοποιημένο;Διεύθυνση;Επικεφαλίδα 1;Επικεφαλίδα 2;Επικεφαλίδα 3;Επικεφαλίδα 4;Επικεφαλίδα 5;Επικεφαλίδα 6", +FontFormats : "Κανονικό;Μορφοποιημένο;Διεύθυνση;Επικεφαλίδα 1;Επικεφαλίδα 2;Επικεφαλίδα 3;Επικεφαλίδα 4;Επικεφαλίδα 5;Επικεφαλίδα 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Επεξεργασία XHTML. Παρακαλώ περιμένετε...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Η μπάρα εργαλείων \"%1\" δεν υπάρχε NoActiveX : "Οι ρυθμίσεις ασφαλείας του browser σας μπορεί να περιορίσουν κάποιες ρυθμίσεις του προγράμματος. Χρειάζεται να ενεργοποιήσετε την επιλογή \"Run ActiveX controls and plug-ins\". Ίσως παρουσιαστούν λάθη και παρατηρήσετε ελειπείς λειτουργίες.", BrowseServerBlocked : "Οι πόροι του browser σας δεν είναι προσπελάσιμοι. Σιγουρευτείτε ότι δεν υπάρχουν ενεργοί popup blockers.", DialogBlocked : "Δεν ήταν δυνατό να ανοίξει το παράθυρο διαλόγου. Σιγουρευτείτε ότι δεν υπάρχουν ενεργοί popup blockers.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Επιλέξτε μια άγκυρα", DlgLnkAnchorByName : "Βάσει του Ονόματος (Name) της άγκυρας", DlgLnkAnchorById : "Βάσει του Element Id", -DlgLnkNoAnchors : "(Δεν υπάρχουν άγκυρες στο κείμενο)", +DlgLnkNoAnchors : "<Δεν υπάρχουν άγκυρες στο κείμενο>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Διεύθυνση Ηλεκτρονικού Ταχυδρομείου", DlgLnkEMailSubject : "Θέμα Μηνύματος", DlgLnkEMailBody : "Κείμενο Μηνύματος", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Απόσταση κελιών", DlgTableCellPad : "Γέμισμα κελιών", DlgTableCaption : "Υπέρτιτλος", DlgTableSummary : "Περίληψη", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Ιδιότητες Κελιού", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Πάνω (Top)", DlgCellVerAlignMiddle : "Μέση (Middle)", DlgCellVerAlignBottom : "Κάτω (Bottom)", DlgCellVerAlignBaseline : "Γραμμή Βάσης (Baseline)", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Αριθμός Γραμμών (Rows Span)", DlgCellCollSpan : "Αριθμός Κολωνών (Columns Span)", DlgCellBackColor : "Χρώμα Υποβάθρου", DlgCellBorderColor : "Χρώμα Περιθωρίου", DlgCellBtnSelect : "Επιλογή...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Αναζήτηση", DlgFindFindBtn : "Αναζήτηση", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Παρακαλώ επικολήστε στο ακόλουθο κ DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Αγνόηση προδιαγραφών γραμματοσειράς", DlgPasteRemoveStyles : "Αφαίρεση προδιαγραφών στύλ", +DlgPasteCleanBox : "Κουτί εκαθάρισης", // Color Picker ColorAutomatic : "Αυτόματο", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Σχετικά", DlgAboutBrowserInfoTab : "Πληροφορίες Browser", DlgAboutLicenseTab : "Άδεια", DlgAboutVersion : "έκδοση", -DlgAboutInfo : "Για περισσότερες πληροφορίες", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Για περισσότερες πληροφορίες" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/en-au.js b/httemplate/elements/fckeditor/editor/lang/en-au.js index 83d6624f2..b6960b6b3 100644 --- a/httemplate/elements/fckeditor/editor/lang/en-au.js +++ b/httemplate/elements/fckeditor/editor/lang/en-au.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Remove Format", InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", -VisitLink : "Open Link", Anchor : "Insert/Edit Anchor", -AnchorDelete : "Remove Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Right Justify", BlockJustify : "Block Justify", DecreaseIndent : "Decrease Indent", IncreaseIndent : "Increase Indent", -Blockquote : "Blockquote", -CreateDiv : "Create Div Container", -EditDiv : "Edit Div Container", -DeleteDiv : "Remove Div Container", Undo : "Undo", Redo : "Redo", NumberedListLbl : "Numbered List", @@ -109,27 +103,20 @@ SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Maximize the editor size", -ShowBlocks : "Show Blocks", // Context Menu EditLink : "Edit Link", CellCM : "Cell", RowCM : "Row", ColumnCM : "Column", -InsertRowAfter : "Insert Row After", -InsertRowBefore : "Insert Row Before", +InsertRow : "Insert Row", DeleteRows : "Delete Rows", -InsertColumnAfter : "Insert Column After", -InsertColumnBefore : "Insert Column Before", +InsertColumn : "Insert Column", DeleteColumns : "Delete Columns", -InsertCellAfter : "Insert Cell After", -InsertCellBefore : "Insert Cell Before", +InsertCell : "Insert Cell", DeleteCells : "Delete Cells", MergeCells : "Merge Cells", -MergeRight : "Merge Right", -MergeDown : "Merge Down", -HorizontalSplitCell : "Split Cell Horizontally", -VerticalSplitCell : "Split Cell Vertically", +SplitCell : "Split Cell", TableDelete : "Delete Table", CellProperties : "Cell Properties", TableProperties : "Table Properties", @@ -147,7 +134,7 @@ SelectionFieldProp : "Selection Field Properties", TextareaProp : "Textarea Properties", FormProp : "Form Properties", -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processing XHTML. Please wait...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Select an Anchor", DlgLnkAnchorByName : "By Anchor Name", DlgLnkAnchorById : "By Element Id", -DlgLnkNoAnchors : "(No anchors available in the document)", +DlgLnkNoAnchors : "(No anchors available in the document)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Address", DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message Body", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Cell spacing", DlgTableCellPad : "Cell padding", DlgTableCaption : "Caption", DlgTableSummary : "Summary", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Cell Properties", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", -DlgCellType : "Cell Type", -DlgCellTypeData : "Data", -DlgCellTypeHeader : "Header", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Background Colour", DlgCellBorderColor : "Border Colour", DlgCellBtnSelect : "Select...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", - // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", @@ -368,10 +343,11 @@ PasteErrorCopy : "Your browser security settings don't permit the editor to auto PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", -DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", DlgPasteIgnoreFont : "Ignore Font Face definitions", DlgPasteRemoveStyles : "Remove Styles definitions", +DlgPasteCleanBox : "Clean Up Box", // Color Picker ColorAutomatic : "Automatic", @@ -514,7 +490,7 @@ DlgDocPreview : "Preview", // Templates Dialog Templates : "Templates", DlgTemplatesTitle : "Content Templates", -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", DlgTemplatesLoading : "Loading templates list. Please wait...", DlgTemplatesNoTpl : "(No templates defined)", DlgTemplatesReplace : "Replace actual contents", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "About", DlgAboutBrowserInfoTab : "Browser Info", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", -DlgAboutInfo : "For further information go to", - -// Div Dialog -DlgDivGeneralTab : "General", -DlgDivAdvancedTab : "Advanced", -DlgDivStyle : "Style", -DlgDivInlineStyle : "Inline Style", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "For further information go to" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/en-ca.js b/httemplate/elements/fckeditor/editor/lang/en-ca.js index 1f82fc870..2900a9d35 100644 --- a/httemplate/elements/fckeditor/editor/lang/en-ca.js +++ b/httemplate/elements/fckeditor/editor/lang/en-ca.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Remove Format", InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", -VisitLink : "Open Link", Anchor : "Insert/Edit Anchor", -AnchorDelete : "Remove Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Right Justify", BlockJustify : "Block Justify", DecreaseIndent : "Decrease Indent", IncreaseIndent : "Increase Indent", -Blockquote : "Blockquote", -CreateDiv : "Create Div Container", -EditDiv : "Edit Div Container", -DeleteDiv : "Remove Div Container", Undo : "Undo", Redo : "Redo", NumberedListLbl : "Numbered List", @@ -109,27 +103,20 @@ SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Maximize the editor size", -ShowBlocks : "Show Blocks", // Context Menu EditLink : "Edit Link", CellCM : "Cell", RowCM : "Row", ColumnCM : "Column", -InsertRowAfter : "Insert Row After", -InsertRowBefore : "Insert Row Before", +InsertRow : "Insert Row", DeleteRows : "Delete Rows", -InsertColumnAfter : "Insert Column After", -InsertColumnBefore : "Insert Column Before", +InsertColumn : "Insert Column", DeleteColumns : "Delete Columns", -InsertCellAfter : "Insert Cell After", -InsertCellBefore : "Insert Cell Before", +InsertCell : "Insert Cell", DeleteCells : "Delete Cells", MergeCells : "Merge Cells", -MergeRight : "Merge Right", -MergeDown : "Merge Down", -HorizontalSplitCell : "Split Cell Horizontally", -VerticalSplitCell : "Split Cell Vertically", +SplitCell : "Split Cell", TableDelete : "Delete Table", CellProperties : "Cell Properties", TableProperties : "Table Properties", @@ -147,7 +134,7 @@ SelectionFieldProp : "Selection Field Properties", TextareaProp : "Textarea Properties", FormProp : "Form Properties", -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processing XHTML. Please wait...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Select an Anchor", DlgLnkAnchorByName : "By Anchor Name", DlgLnkAnchorById : "By Element Id", -DlgLnkNoAnchors : "(No anchors available in the document)", +DlgLnkNoAnchors : "(No anchors available in the document)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Address", DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message Body", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Cell spacing", DlgTableCellPad : "Cell padding", DlgTableCaption : "Caption", DlgTableSummary : "Summary", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Cell Properties", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", -DlgCellType : "Cell Type", -DlgCellTypeData : "Data", -DlgCellTypeHeader : "Header", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Background Colour", DlgCellBorderColor : "Border Colour", DlgCellBtnSelect : "Select...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", - // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", @@ -368,10 +343,11 @@ PasteErrorCopy : "Your browser security settings don't permit the editor to auto PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", -DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", DlgPasteIgnoreFont : "Ignore Font Face definitions", DlgPasteRemoveStyles : "Remove Styles definitions", +DlgPasteCleanBox : "Clean Up Box", // Color Picker ColorAutomatic : "Automatic", @@ -514,7 +490,7 @@ DlgDocPreview : "Preview", // Templates Dialog Templates : "Templates", DlgTemplatesTitle : "Content Templates", -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", DlgTemplatesLoading : "Loading templates list. Please wait...", DlgTemplatesNoTpl : "(No templates defined)", DlgTemplatesReplace : "Replace actual contents", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "About", DlgAboutBrowserInfoTab : "Browser Info", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", -DlgAboutInfo : "For further information go to", - -// Div Dialog -DlgDivGeneralTab : "General", -DlgDivAdvancedTab : "Advanced", -DlgDivStyle : "Style", -DlgDivInlineStyle : "Inline Style", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "For further information go to" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/en-uk.js b/httemplate/elements/fckeditor/editor/lang/en-uk.js index d50b51ed1..eaaf3e4c1 100644 --- a/httemplate/elements/fckeditor/editor/lang/en-uk.js +++ b/httemplate/elements/fckeditor/editor/lang/en-uk.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Remove Format", InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", -VisitLink : "Open Link", Anchor : "Insert/Edit Anchor", -AnchorDelete : "Remove Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Right Justify", BlockJustify : "Block Justify", DecreaseIndent : "Decrease Indent", IncreaseIndent : "Increase Indent", -Blockquote : "Blockquote", -CreateDiv : "Create Div Container", -EditDiv : "Edit Div Container", -DeleteDiv : "Remove Div Container", Undo : "Undo", Redo : "Redo", NumberedListLbl : "Numbered List", @@ -109,27 +103,20 @@ SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Maximize the editor size", -ShowBlocks : "Show Blocks", // Context Menu EditLink : "Edit Link", CellCM : "Cell", RowCM : "Row", ColumnCM : "Column", -InsertRowAfter : "Insert Row After", -InsertRowBefore : "Insert Row Before", +InsertRow : "Insert Row", DeleteRows : "Delete Rows", -InsertColumnAfter : "Insert Column After", -InsertColumnBefore : "Insert Column Before", +InsertColumn : "Insert Column", DeleteColumns : "Delete Columns", -InsertCellAfter : "Insert Cell After", -InsertCellBefore : "Insert Cell Before", +InsertCell : "Insert Cell", DeleteCells : "Delete Cells", MergeCells : "Merge Cells", -MergeRight : "Merge Right", -MergeDown : "Merge Down", -HorizontalSplitCell : "Split Cell Horizontally", -VerticalSplitCell : "Split Cell Vertically", +SplitCell : "Split Cell", TableDelete : "Delete Table", CellProperties : "Cell Properties", TableProperties : "Table Properties", @@ -147,7 +134,7 @@ SelectionFieldProp : "Selection Field Properties", TextareaProp : "Textarea Properties", FormProp : "Form Properties", -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processing XHTML. Please wait...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Select an Anchor", DlgLnkAnchorByName : "By Anchor Name", DlgLnkAnchorById : "By Element Id", -DlgLnkNoAnchors : "(No anchors available in the document)", +DlgLnkNoAnchors : "(No anchors available in the document)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Address", DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message Body", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Cell spacing", DlgTableCellPad : "Cell padding", DlgTableCaption : "Caption", DlgTableSummary : "Summary", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Cell Properties", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", -DlgCellType : "Cell Type", -DlgCellTypeData : "Data", -DlgCellTypeHeader : "Header", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Background Colour", DlgCellBorderColor : "Border Colour", DlgCellBtnSelect : "Select...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", - // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", @@ -368,10 +343,11 @@ PasteErrorCopy : "Your browser security settings don't permit the editor to auto PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", -DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", DlgPasteIgnoreFont : "Ignore Font Face definitions", DlgPasteRemoveStyles : "Remove Styles definitions", +DlgPasteCleanBox : "Clean Up Box", // Color Picker ColorAutomatic : "Automatic", @@ -514,7 +490,7 @@ DlgDocPreview : "Preview", // Templates Dialog Templates : "Templates", DlgTemplatesTitle : "Content Templates", -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", DlgTemplatesLoading : "Loading templates list. Please wait...", DlgTemplatesNoTpl : "(No templates defined)", DlgTemplatesReplace : "Replace actual contents", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "About", DlgAboutBrowserInfoTab : "Browser Info", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", -DlgAboutInfo : "For further information go to", - -// Div Dialog -DlgDivGeneralTab : "General", -DlgDivAdvancedTab : "Advanced", -DlgDivStyle : "Style", -DlgDivInlineStyle : "Inline Style", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "For further information go to" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/en.js b/httemplate/elements/fckeditor/editor/lang/en.js index 2c2f5da11..c579fc9e3 100644 --- a/httemplate/elements/fckeditor/editor/lang/en.js +++ b/httemplate/elements/fckeditor/editor/lang/en.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Remove Format", InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", -VisitLink : "Open Link", Anchor : "Insert/Edit Anchor", -AnchorDelete : "Remove Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Right Justify", BlockJustify : "Block Justify", DecreaseIndent : "Decrease Indent", IncreaseIndent : "Increase Indent", -Blockquote : "Blockquote", -CreateDiv : "Create Div Container", -EditDiv : "Edit Div Container", -DeleteDiv : "Remove Div Container", Undo : "Undo", Redo : "Redo", NumberedListLbl : "Numbered List", @@ -109,27 +103,20 @@ SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Maximize the editor size", -ShowBlocks : "Show Blocks", // Context Menu EditLink : "Edit Link", CellCM : "Cell", RowCM : "Row", ColumnCM : "Column", -InsertRowAfter : "Insert Row After", -InsertRowBefore : "Insert Row Before", +InsertRow : "Insert Row", DeleteRows : "Delete Rows", -InsertColumnAfter : "Insert Column After", -InsertColumnBefore : "Insert Column Before", +InsertColumn : "Insert Column", DeleteColumns : "Delete Columns", -InsertCellAfter : "Insert Cell After", -InsertCellBefore : "Insert Cell Before", +InsertCell : "Insert Cell", DeleteCells : "Delete Cells", MergeCells : "Merge Cells", -MergeRight : "Merge Right", -MergeDown : "Merge Down", -HorizontalSplitCell : "Split Cell Horizontally", -VerticalSplitCell : "Split Cell Vertically", +SplitCell : "Split Cell", TableDelete : "Delete Table", CellProperties : "Cell Properties", TableProperties : "Table Properties", @@ -147,7 +134,7 @@ SelectionFieldProp : "Selection Field Properties", TextareaProp : "Textarea Properties", FormProp : "Form Properties", -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processing XHTML. Please wait...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Select an Anchor", DlgLnkAnchorByName : "By Anchor Name", DlgLnkAnchorById : "By Element Id", -DlgLnkNoAnchors : "(No anchors available in the document)", +DlgLnkNoAnchors : "(No anchors available in the document)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Address", DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message Body", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Cell spacing", DlgTableCellPad : "Cell padding", DlgTableCaption : "Caption", DlgTableSummary : "Summary", -DlgTableHeaders : "Headers", -DlgTableHeadersNone : "None", -DlgTableHeadersColumn : "First column", -DlgTableHeadersRow : "First Row", -DlgTableHeadersBoth : "Both", // Table Cell Dialog DlgCellTitle : "Cell Properties", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", -DlgCellType : "Cell Type", -DlgCellTypeData : "Data", -DlgCellTypeHeader : "Header", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Background Color", DlgCellBorderColor : "Border Color", DlgCellBtnSelect : "Select...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", - // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Please paste inside the following box using the keyboard (", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Retadreso", DlgLnkEMailSubject : "Temlinio", DlgLnkEMailBody : "Mesaĝa korpo", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Interspacigo de Ĉeloj", DlgTableCellPad : "Ĉirkaŭenhava Plenigado", DlgTableCaption : "Titolo", DlgTableSummary : "Summary", //MISSING -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Atributoj de Celo", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Supre", DlgCellVerAlignMiddle : "Centre", DlgCellVerAlignBottom : "Malsupre", DlgCellVerAlignBaseline : "Je Malsupro de Teksto", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Linioj Kunfanditaj", DlgCellCollSpan : "Kolumnoj Kunfanditaj", DlgCellBackColor : "Fono", DlgCellBorderColor : "Bordero", DlgCellBtnSelect : "Elekti...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Serĉi", DlgFindFindBtn : "Serĉi", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Please paste inside the following box using the keyboard (", DlgGenId : "Id", -DlgGenLangDir : "Orientación", +DlgGenLangDir : "Orientación de idioma", DlgGenLangDirLtr : "Izquierda a Derecha (LTR)", DlgGenLangDirRtl : "Derecha a Izquierda (RTL)", -DlgGenLangCode : "Cód. de idioma", +DlgGenLangCode : "Código de idioma", DlgGenAccessKey : "Clave de Acceso", DlgGenName : "Nombre", DlgGenTabIndex : "Indice de tabulación", @@ -215,7 +201,7 @@ DlgImgAlignRight : "Derecha", DlgImgAlignTextTop : "Tope del texto", DlgImgAlignTop : "Tope", DlgImgPreview : "Vista Previa", -DlgImgAlertUrl : "Por favor escriba la URL de la imagen", +DlgImgAlertUrl : "Por favor tipee el URL de la imagen", DlgImgLinkTab : "Vínculo", // Flash Dialog @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Seleccionar una referencia", DlgLnkAnchorByName : "Por Nombre de Referencia", DlgLnkAnchorById : "Por ID de elemento", -DlgLnkNoAnchors : "(No hay referencias disponibles en el documento)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Dirección de E-Mail", DlgLnkEMailSubject : "Título del Mensaje", DlgLnkEMailBody : "Cuerpo del Mensaje", @@ -276,7 +262,7 @@ DlgLnkPopTop : "Posición Derecha", DlnLnkMsgNoUrl : "Por favor tipee el vínculo URL", DlnLnkMsgNoEMail : "Por favor tipee la dirección de e-mail", DlnLnkMsgNoAnchor : "Por favor seleccione una referencia", -DlnLnkMsgInvPopName : "El nombre debe empezar con un caracter alfanumérico y no debe contener espacios", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Seleccionar Color", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Esp. e/celdas", DlgTableCellPad : "Esp. interior", DlgTableCaption : "Título", DlgTableSummary : "Síntesis", -DlgTableHeaders : "Encabezados", -DlgTableHeadersNone : "Ninguno", -DlgTableHeadersColumn : "Primera columna", -DlgTableHeadersRow : "Primera fila", -DlgTableHeadersBoth : "Ambas", // Table Cell Dialog DlgCellTitle : "Propiedades de Celda", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Tope", DlgCellVerAlignMiddle : "Medio", DlgCellVerAlignBottom : "ie", DlgCellVerAlignBaseline : "Línea de Base", -DlgCellType : "Tipo de celda", -DlgCellTypeData : "Datos", -DlgCellTypeHeader : "Encabezado", DlgCellRowSpan : "Abarcar Filas", DlgCellCollSpan : "Abarcar Columnas", DlgCellBackColor : "Color de Fondo", DlgCellBorderColor : "Color de Borde", DlgCellBtnSelect : "Seleccione...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Buscar y Reemplazar", - // Find Dialog DlgFindTitle : "Buscar", DlgFindFindBtn : "Buscar", @@ -369,9 +344,10 @@ PasteAsText : "Pegar como Texto Plano", PasteFromWord : "Pegar desde Word", DlgPasteMsg2 : "Por favor pegue dentro del cuadro utilizando el teclado (Ctrl+V); luego presione OK.", -DlgPasteSec : "Debido a la configuración de seguridad de su navegador, el editor no tiene acceso al portapapeles. Es necesario que lo pegue de nuevo en esta ventana.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorar definiciones de fuentes", DlgPasteRemoveStyles : "Remover definiciones de estilo", +DlgPasteCleanBox : "Borrar el contenido del cuadro", // Color Picker ColorAutomatic : "Automático", @@ -405,9 +381,9 @@ IeSpellDownload : "Módulo de Control de Ortografía no instalado. ¿Desea des // Button Dialog DlgButtonText : "Texto (Valor)", DlgButtonType : "Tipo", -DlgButtonTypeBtn : "Boton", -DlgButtonTypeSbm : "Enviar", -DlgButtonTypeRst : "Reestablecer", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nombre", @@ -456,7 +432,7 @@ DlgHiddenValue : "Valor", // Bulleted List Dialog BulletedListProp : "Propiedades de Viñetas", NumberedListProp : "Propiedades de Numeraciones", -DlgLstStart : "Inicio", +DlgLstStart : "Start", //MISSING DlgLstType : "Tipo", DlgLstTypeCircle : "Círculo", DlgLstTypeDisc : "Disco", @@ -479,15 +455,15 @@ DlgDocLangDirLTR : "Izq. a Derecha (LTR)", DlgDocLangDirRTL : "Der. a Izquierda (RTL)", DlgDocLangCode : "Código de Idioma", DlgDocCharSet : "Codif. de Conjunto de Caracteres", -DlgDocCharSetCE : "Centro Europeo", -DlgDocCharSetCT : "Chino Tradicional (Big5)", -DlgDocCharSetCR : "Cirílico", -DlgDocCharSetGR : "Griego", -DlgDocCharSetJP : "Japonés", -DlgDocCharSetKR : "Coreano", -DlgDocCharSetTR : "Turco", -DlgDocCharSetUN : "Unicode (UTF-8)", -DlgDocCharSetWE : "Europeo occidental", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Otra Codificación", DlgDocDocType : "Encabezado de Tipo de Documento", @@ -517,23 +493,12 @@ DlgTemplatesTitle : "Contenido de Plantillas", DlgTemplatesSelMsg : "Por favor selecciona la plantilla a abrir en el editor
(el contenido actual se perderá):", DlgTemplatesLoading : "Cargando lista de Plantillas. Por favor, aguarde...", DlgTemplatesNoTpl : "(No hay plantillas definidas)", -DlgTemplatesReplace : "Reemplazar el contenido actual", +DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Acerca de", DlgAboutBrowserInfoTab : "Información de Navegador", DlgAboutLicenseTab : "Licencia", DlgAboutVersion : "versión", -DlgAboutInfo : "Para mayor información por favor dirigirse a", - -// Div Dialog -DlgDivGeneralTab : "General", -DlgDivAdvancedTab : "Avanzado", -DlgDivStyle : "Estilo", -DlgDivInlineStyle : "Estilos CSS", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Para mayor información por favor dirigirse a" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/et.js b/httemplate/elements/fckeditor/editor/lang/et.js index 3756cadf6..53a147e11 100644 --- a/httemplate/elements/fckeditor/editor/lang/et.js +++ b/httemplate/elements/fckeditor/editor/lang/et.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -42,17 +42,15 @@ Print : "Prindi", SelectAll : "Vali kõik", RemoveFormat : "Eemalda vorming", InsertLinkLbl : "Link", -InsertLink : "Sisesta link / Muuda linki", +InsertLink : "Sisesta/Muuda link", RemoveLink : "Eemalda link", -VisitLink : "Open Link", //MISSING -Anchor : "Sisesta ankur / Muuda ankrut", -AnchorDelete : "Eemalda ankur", +Anchor : "Sisesta/Muuda ankur", InsertImageLbl : "Pilt", -InsertImage : "Sisesta pilt / Muuda pilti", +InsertImage : "Sisesta/Muuda pilt", InsertFlashLbl : "Flash", -InsertFlash : "Sisesta flash / Muuda flashi", +InsertFlash : "Sisesta/Muuda flash", InsertTableLbl : "Tabel", -InsertTable : "Sisesta tabel / Muuda tabelit", +InsertTable : "Sisesta/Muuda tabel", InsertLineLbl : "Joon", InsertLine : "Sisesta horisontaaljoon", InsertSpecialCharLbl: "Erimärgid", @@ -60,10 +58,10 @@ InsertSpecialChar : "Sisesta erimärk", InsertSmileyLbl : "Emotikon", InsertSmiley : "Sisesta emotikon", About : "FCKeditor teave", -Bold : "Paks", -Italic : "Kursiiv", -Underline : "Allajoonitud", -StrikeThrough : "Läbijoonitud", +Bold : "Rasvane kiri", +Italic : "Kursiiv kiri", +Underline : "Allajoonitud kiri", +StrikeThrough : "Läbijoonitud kiri", Subscript : "Allindeks", Superscript : "Ülaindeks", LeftJustify : "Vasakjoondus", @@ -72,10 +70,6 @@ RightJustify : "Paremjoondus", BlockJustify : "Rööpjoondus", DecreaseIndent : "Vähenda taanet", IncreaseIndent : "Suurenda taanet", -Blockquote : "Blokktsitaat", -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Võta tagasi", Redo : "Korda toimingut", NumberedListLbl : "Nummerdatud loetelu", @@ -96,7 +90,7 @@ Replace : "Asenda", SpellCheck : "Kontrolli õigekirja", UniversalKeyboard : "Universaalne klaviatuur", PageBreakLbl : "Lehepiir", -PageBreak : "Sisesta lehevahetuskoht", +PageBreak : "Sisesta lehevahetus koht", Form : "Vorm", Checkbox : "Märkeruut", @@ -109,31 +103,24 @@ SelectionField : "Valiklahter", ImageButton : "Piltnupp", FitWindow : "Maksimeeri redaktori mõõtmed", -ShowBlocks : "Näita blokke", // Context Menu EditLink : "Muuda linki", CellCM : "Lahter", RowCM : "Rida", ColumnCM : "Veerg", -InsertRowAfter : "Sisesta rida peale", -InsertRowBefore : "Sisesta rida enne", -DeleteRows : "Eemalda read", -InsertColumnAfter : "Sisesta veerg peale", -InsertColumnBefore : "Sisesta veerg enne", +InsertRow : "Lisa rida", +DeleteRows : "Eemalda ridu", +InsertColumn : "Lisa veerg", DeleteColumns : "Eemalda veerud", -InsertCellAfter : "Sisesta lahter peale", -InsertCellBefore : "Sisesta lahter enne", +InsertCell : "Lisa lahter", DeleteCells : "Eemalda lahtrid", MergeCells : "Ühenda lahtrid", -MergeRight : "Ühenda paremale", -MergeDown : "Ühenda alla", -HorizontalSplitCell : "Poolita lahter horisontaalselt", -VerticalSplitCell : "Poolita lahter vertikaalselt", +SplitCell : "Lahuta lahtrid", TableDelete : "Kustuta tabel", CellProperties : "Lahtri atribuudid", TableProperties : "Tabeli atribuudid", -ImageProperties : "Pildi atribuudid", +ImageProperties : "Pildi atribuudid", FlashProperties : "Flash omadused", AnchorProp : "Ankru omadused", @@ -147,21 +134,20 @@ SelectionFieldProp : "Valiklahtri omadused", TextareaProp : "Tekstiala omadused", FormProp : "Vormi omadused", -FontFormats : "Tavaline;Vormindatud;Aadress;Pealkiri 1;Pealkiri 2;Pealkiri 3;Pealkiri 4;Pealkiri 5;Pealkiri 6;Tavaline (DIV)", +FontFormats : "Tavaline;Vormindatud;Aadress;Pealkiri 1;Pealkiri 2;Pealkiri 3;Pealkiri 4;Pealkiri 5;Pealkiri 6;Tavaline (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages -ProcessingXHTML : "Töötlen XHTML'i. Palun oota...", +ProcessingXHTML : "Töötlen XHTML. Palun oota...", Done : "Tehtud", -PasteWordConfirm : "Tekst, mida soovid lisada paistab pärinevat Word'ist. Kas soovid seda enne kleepimist puhastada?", +PasteWordConfirm : "Tekst, mida soovid lisada paistab pärinevat Wordist. Kas soovid seda enne kleepimist puhastada?", NotCompatiblePaste : "See käsk on saadaval ainult Internet Explorer versioon 5.5 või uuema puhul. Kas soovid kleepida ilma puhastamata?", -UnknownToolbarItem : "Tundmatu tööriistarea üksus \"%1\"", +UnknownToolbarItem : "Tundmatu tööriistariba üksus \"%1\"", UnknownCommand : "Tundmatu käsunimi \"%1\"", NotImplemented : "Käsku ei täidetud", UnknownToolbarSet : "Tööriistariba \"%1\" ei eksisteeri", -NoActiveX : "Sinu veebisirvija turvalisuse seaded võivad limiteerida mõningaid tekstirdaktori kasutusvõimalusi. Sa peaksid võimaldama valiku \"Run ActiveX controls and plug-ins\" oma veebisirvija seadetes. Muidu võid sa täheldada vigu tekstiredaktori töös ja märgata puuduvaid funktsioone.", +NoActiveX : "Sinu veebisirvija turvalisuse seaded võivad limiteerida mõningaid tekstirdaktori kasutus võimalusi. Sa peaksid võimaldama valiku \"Run ActiveX controls and plug-ins\" oma sirvija seadetes. Muidu võid sa täheldada vigu tekstiredaktori töös ja märgata puuduvaid funktsioone.", BrowseServerBlocked : "Ressursside sirvija avamine ebaõnnestus. Võimalda pop-up akende avanemine.", DialogBlocked : "Ei olenud võimalik avada dialoogi akent. Võimalda pop-up akende avanemine.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Vali ankur", DlgLnkAnchorByName : "Ankru nime järgi", DlgLnkAnchorById : "Elemendi id järgi", -DlgLnkNoAnchors : "(Selles dokumendis ei ole ankruid)", +DlgLnkNoAnchors : "(Selles dokumendis ei ole ankruid)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-posti aadress", DlgLnkEMailSubject : "Sõnumi teema", DlgLnkEMailBody : "Sõnumi tekst", @@ -254,7 +240,7 @@ DlgLnkTarget : "Sihtkoht", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Uus aken (_blank)", -DlgLnkTargetParent : "Esivanem aken (_parent)", +DlgLnkTargetParent : "Vanem aken (_parent)", DlgLnkTargetSelf : "Sama aken (_self)", DlgLnkTargetTop : "Pealmine aken (_top)", DlgLnkTargetFrameName : "Sihtmärk raami nimi", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Lahtri vahe", DlgTableCellPad : "Lahtri täidis", DlgTableCaption : "Tabeli tiitel", DlgTableSummary : "Kokkuvõte", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Lahtri atribuudid", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Üles", DlgCellVerAlignMiddle : "Keskele", DlgCellVerAlignBottom : "Alla", DlgCellVerAlignBaseline : "Baasjoonele", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Reaulatus", DlgCellCollSpan : "Veeruulatus", DlgCellBackColor : "Tausta värv", DlgCellBorderColor : "Joone värv", DlgCellBtnSelect : "Vali...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Otsi ja asenda", - // Find Dialog DlgFindTitle : "Otsi", DlgFindFindBtn : "Otsi", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Palun kleebi järgnevasse kasti kasutades klaviatuuri klahvikomb DlgPasteSec : "Sinu veebisirvija turvaseadete tõttu, ei oma redaktor otsest ligipääsu lõikelaua andmetele. Sa pead kleepima need uuesti siia aknasse.", DlgPasteIgnoreFont : "Ignoreeri kirja definitsioone", DlgPasteRemoveStyles : "Eemalda stiilide definitsioonid", +DlgPasteCleanBox : "Puhasta ära kast", // Color Picker ColorAutomatic : "Automaatne", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Teave", DlgAboutBrowserInfoTab : "Veebisirvija info", DlgAboutLicenseTab : "Litsents", DlgAboutVersion : "versioon", -DlgAboutInfo : "Täpsema info saamiseks mine", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Täpsema info saamiseks mine" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/eu.js b/httemplate/elements/fckeditor/editor/lang/eu.js index 75f91a568..266d427b8 100644 --- a/httemplate/elements/fckeditor/editor/lang/eu.js +++ b/httemplate/elements/fckeditor/editor/lang/eu.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -41,13 +41,11 @@ PasteText : "Itsatsi testu bezala", PasteWord : "Itsatsi Word-etik", Print : "Inprimatu", SelectAll : "Hautatu dena", -RemoveFormat : "Kendu Formatua", +RemoveFormat : "Kendu Formatoa", InsertLinkLbl : "Esteka", InsertLink : "Txertatu/Editatu Esteka", RemoveLink : "Kendu Esteka", -VisitLink : "Ireki Esteka", Anchor : "Aingura", -AnchorDelete : "Ezabatu Aingura", InsertImageLbl : "Irudia", InsertImage : "Txertatu/Editatu Irudia", InsertFlashLbl : "Flasha", @@ -73,10 +71,6 @@ RightJustify : "Lerrokatu Eskuman", BlockJustify : "Justifikatu", DecreaseIndent : "Txikitu Koska", IncreaseIndent : "Handitu Koska", -Blockquote : "Aipamen blokea", -CreateDiv : "Sortu Div Edukitzailea", -EditDiv : "Editatu Div Edukitzailea", -DeleteDiv : "Ezabatu Div Edukitzailea", Undo : "Desegin", Redo : "Berregin", NumberedListLbl : "Zenbakidun Zerrenda", @@ -86,7 +80,7 @@ BulletedList : "Txertatu/Kendu Buletdun zerrenda", ShowTableBorders : "Erakutsi Taularen Ertzak", ShowDetails : "Erakutsi Xehetasunak", Style : "Estiloa", -FontFormat : "Formatua", +FontFormat : "Formatoa", Font : "Letra-tipoa", FontSize : "Tamaina", TextColor : "Testu Kolorea", @@ -110,27 +104,20 @@ SelectionField : "Hautespen Eremua", ImageButton : "Irudi Botoia", FitWindow : "Maximizatu editorearen tamaina", -ShowBlocks : "Blokeak erakutsi", // Context Menu EditLink : "Aldatu Esteka", CellCM : "Gelaxka", RowCM : "Errenkada", ColumnCM : "Zutabea", -InsertRowAfter : "Txertatu Lerroa Ostean", -InsertRowBefore : "Txertatu Lerroa Aurretik", +InsertRow : "Txertatu Errenkada", DeleteRows : "Ezabatu Errenkadak", -InsertColumnAfter : "Txertatu Zutabea Ostean", -InsertColumnBefore : "Txertatu Zutabea Aurretik", +InsertColumn : "Txertatu Zutabea", DeleteColumns : "Ezabatu Zutabeak", -InsertCellAfter : "Txertatu Gelaxka Ostean", -InsertCellBefore : "Txertatu Gelaxka Aurretik", +InsertCell : "Txertatu Gelaxka", DeleteCells : "Kendu Gelaxkak", MergeCells : "Batu Gelaxkak", -MergeRight : "Elkartu Eskumara", -MergeDown : "Elkartu Behera", -HorizontalSplitCell : "Banatu Gelaxkak Horizontalki", -VerticalSplitCell : "Banatu Gelaxkak Bertikalki", +SplitCell : "Zatitu Gelaxka", TableDelete : "Ezabatu Taula", CellProperties : "Gelaxkaren Ezaugarriak", TableProperties : "Taularen Ezaugarriak", @@ -148,21 +135,20 @@ SelectionFieldProp : "Hautespen Eremuaren Ezaugarriak", TextareaProp : "Testu-arearen Ezaugarriak", FormProp : "Formularioaren Ezaugarriak", -FontFormats : "Arrunta;Formateatua;Helbidea;Izenburua 1;Izenburua 2;Izenburua 3;Izenburua 4;Izenburua 5;Izenburua 6;Paragrafoa (DIV)", +FontFormats : "Arrunta;Formateatua;Helbidea;Izenburua 1;Izenburua 2;Izenburua 3;Izenburua 4;Izenburua 5;Izenburua 6;Paragrafoa (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML Prozesatzen. Itxaron mesedez...", Done : "Eginda", -PasteWordConfirm : "Itsatsi nahi duzun testua Wordetik hartua dela dirudi. Itsatsi baino lehen garbitu nahi duzu?", +PasteWordConfirm : "Itsatsi nahi duzun textua Wordetik hartua dela dirudi. Itsatsi baino lehen garbitu nahi duzu?", NotCompatiblePaste : "Komando hau Internet Explorer 5.5 bertsiorako edo ondorengoentzako erabilgarria dago. Garbitu gabe itsatsi nahi duzu?", UnknownToolbarItem : "Ataza barrako elementu ezezaguna \"%1\"", UnknownCommand : "Komando izen ezezaguna \"%1\"", NotImplemented : "Komando ez inplementatua", UnknownToolbarSet : "Ataza barra \"%1\" taldea ez da existitzen", -NoActiveX : "Zure nabigatzailearen segurtasun hobespenak editore honen zenbait ezaugarri mugatu ditzake. \"ActiveX kontrolak eta pluginak\" aktibatu beharko zenituzke, bestela erroreak eta ezaugarrietan mugak egon daitezke.", +NoActiveX : "Zure nabigatzailearen segustasun hobespenak editore honen zenbait ezaugarri mugatu ditzake. \"ActiveX kontrolak eta plug-inak\" aktibatu beharko zenituzke, bestela erroreak eta ezaugarrietan mugak egon daitezke.", BrowseServerBlocked : "Baliabideen arakatzailea ezin da ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.", DialogBlocked : "Ezin da elkarrizketa-leihoa ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.", -VisitLinkBlocked : "Ezin da leiho berri bat ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.", // Dialogs DlgBtnOK : "Ados", @@ -197,7 +183,7 @@ DlgImgInfoTab : "Irudi informazioa", DlgImgBtnUpload : "Zerbitzarira bidalia", DlgImgURL : "URL", DlgImgUpload : "Gora Kargatu", -DlgImgAlt : "Ordezko Testua", +DlgImgAlt : "Textu Alternatiboa", DlgImgWidth : "Zabalera", DlgImgHeight : "Altuera", DlgImgLockRatio : "Erlazioa Blokeatu", @@ -226,7 +212,7 @@ DlgFlashChkLoop : "Begizta", DlgFlashChkMenu : "Flasharen Menua Gaitu", DlgFlashScale : "Eskalatu", DlgFlashScaleAll : "Dena erakutsi", -DlgFlashScaleNoBorder : "Ertzik gabe", +DlgFlashScaleNoBorder : "Ertzarik gabe", DlgFlashScaleFit : "Doitu", // Link Dialog @@ -236,7 +222,7 @@ DlgLnkTargetTab : "Helburua", DlgLnkType : "Esteka Mota", DlgLnkTypeURL : "URL", -DlgLnkTypeAnchor : "Aingura orrialde honetan", +DlgLnkTypeAnchor : "Aingura horrialde honentan", DlgLnkTypeEMail : "ePosta", DlgLnkProto : "Protokoloa", DlgLnkProtoOther : "", @@ -244,7 +230,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Aingura bat hautatu", DlgLnkAnchorByName : "Aingura izenagatik", DlgLnkAnchorById : "Elementuaren ID-gatik", -DlgLnkNoAnchors : "(Ez daude aingurak eskuragarri dokumentuan)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "ePosta Helbidea", DlgLnkEMailSubject : "Mezuaren Gaia", DlgLnkEMailBody : "Mezuaren Gorputza", @@ -253,14 +239,14 @@ DlgLnkBtnUpload : "Zerbitzarira bidali", DlgLnkTarget : "Target (Helburua)", DlgLnkTargetFrame : "", -DlgLnkTargetPopup : "", -DlgLnkTargetBlank : "Leiho Berria (_blank)", -DlgLnkTargetParent : "Leiho Gurasoa (_parent)", -DlgLnkTargetSelf : "Leiho Berdina (_self)", -DlgLnkTargetTop : "Goiko Leihoa (_top)", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Lehio Berria (_blank)", +DlgLnkTargetParent : "Lehio Gurasoa (_parent)", +DlgLnkTargetSelf : "Lehio Berdina (_self)", +DlgLnkTargetTop : "Goiko Lehioa (_top)", DlgLnkTargetFrameName : "Marko Helburuaren Izena", -DlgLnkPopWinName : "Popup Leihoaren Izena", -DlgLnkPopWinFeat : "Popup Leihoaren Ezaugarriak", +DlgLnkPopWinName : "Popup Lehioaren Izena", +DlgLnkPopWinFeat : "Popup Lehioaren Ezaugarriak", DlgLnkPopResize : "Tamaina Aldakorra", DlgLnkPopLocation : "Kokaleku Barra", DlgLnkPopMenu : "Menu Barra", @@ -277,7 +263,7 @@ DlgLnkPopTop : "Goiko Posizioa", DlnLnkMsgNoUrl : "Mesedez URL esteka idatzi", DlnLnkMsgNoEMail : "Mesedez ePosta helbidea idatzi", DlnLnkMsgNoAnchor : "Mesedez aingura bat aukeratu", -DlnLnkMsgInvPopName : "Popup leihoaren izenak karaktere alfabetiko batekin hasi behar du eta eta ezin du zuriunerik izan", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Kolore Aukeraketa", @@ -309,11 +295,6 @@ DlgTableCellSpace : "Gelaxka arteko tartea", DlgTableCellPad : "Gelaxken betegarria", DlgTableCaption : "Epigrafea", DlgTableSummary : "Laburpena", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Gelaxken Ezaugarriak", @@ -325,7 +306,7 @@ DlgCellWordWrap : "Itzulbira", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Bai", DlgCellWordWrapNo : "Ez", -DlgCellHorAlign : "Lerrokatu Horizontalki", +DlgCellHorAlign : "Horizontal Alignment", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Ezkerrean", DlgCellHorAlignCenter : "Erdian", @@ -335,18 +316,12 @@ DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Goian", DlgCellVerAlignMiddle : "Erdian", DlgCellVerAlignBottom : "Behean", -DlgCellVerAlignBaseline : "Oinean", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING +DlgCellVerAlignBaseline : "Oinan", DlgCellRowSpan : "Lerroak Hedatu", DlgCellCollSpan : "Zutabeak Hedatu", DlgCellBackColor : "Atzeko Kolorea", DlgCellBorderColor : "Ertzako Kolorea", -DlgCellBtnSelect : "Aukeratu...", - -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Bilatu eta Ordeztu", +DlgCellBtnSelect : "Aukertau...", // Find Dialog DlgFindTitle : "Bilaketa", @@ -370,9 +345,10 @@ PasteAsText : "Testu Arrunta bezala Itsatsi", PasteFromWord : "Word-etik itsatsi", DlgPasteMsg2 : "Mesedez teklatua erabilita (Ctrl+V) ondorego eremuan testua itsatsi eta OK sakatu.", -DlgPasteSec : "Nabigatzailearen segurtasun ezarpenak direla eta, editoreak ezin du arbela zuzenean erabili. Leiho honetan berriro itsatsi behar duzu.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Letra Motaren definizioa ezikusi", DlgPasteRemoveStyles : "Estilo definizioak kendu", +DlgPasteCleanBox : "Testu-eremua Garbitu", // Color Picker ColorAutomatic : "Automatikoa", @@ -406,9 +382,9 @@ IeSpellDownload : "Zuzentzaile ortografikoa ez dago instalatuta. Deskargatu na // Button Dialog DlgButtonText : "Testua (Balorea)", DlgButtonType : "Mota", -DlgButtonTypeBtn : "Botoia", -DlgButtonTypeSbm : "Bidali", -DlgButtonTypeRst : "Garbitu", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Izena", @@ -418,7 +394,7 @@ DlgCheckboxSelected : "Hautatuta", // Form Dialog DlgFormName : "Izena", DlgFormAction : "Ekintza", -DlgFormMethod : "Metodoa", +DlgFormMethod : "Method", // Select Field Dialog DlgSelectName : "Izena", @@ -457,7 +433,7 @@ DlgHiddenValue : "Balorea", // Bulleted List Dialog BulletedListProp : "Buletdun Zerrendaren Ezarpenak", NumberedListProp : "Zenbakidun Zerrendaren Ezarpenak", -DlgLstStart : "Hasiera", +DlgLstStart : "Start", //MISSING DlgLstType : "Mota", DlgLstTypeCircle : "Zirkulua", DlgLstTypeDisc : "Diskoa", @@ -470,7 +446,7 @@ DlgLstTypeLRoman : "Erromatar zenbaki larriak (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Orokorra", -DlgDocBackTab : "Atzealdea", +DlgDocBackTab : "Atzekaldea", DlgDocColorsTab : "Koloreak eta Marjinak", DlgDocMetaTab : "Meta Informazioa", @@ -480,23 +456,23 @@ DlgDocLangDirLTR : "Ezkerretik eskumara (LTR)", DlgDocLangDirRTL : "Eskumatik ezkerrera (RTL)", DlgDocLangCode : "Hizkuntzaren Kodea", DlgDocCharSet : "Karaktere Multzoaren Kodeketa", -DlgDocCharSetCE : "Erdialdeko Europakoa", -DlgDocCharSetCT : "Txinatar Tradizionala (Big5)", -DlgDocCharSetCR : "Zirilikoa", -DlgDocCharSetGR : "Grekoa", -DlgDocCharSetJP : "Japoniarra", -DlgDocCharSetKR : "Korearra", -DlgDocCharSetTR : "Turkiarra", -DlgDocCharSetUN : "Unicode (UTF-8)", -DlgDocCharSetWE : "Mendebaldeko Europakoa", -DlgDocCharSetOther : "Beste Karaktere Multzoko Kodeketa", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING +DlgDocCharSetOther : "Beste Karaktere Multzoaren Kodeketa", DlgDocDocType : "Document Type Goiburua", DlgDocDocTypeOther : "Beste Document Type Goiburua", DlgDocIncXHTML : "XHTML Ezarpenak", DlgDocBgColor : "Atzeko Kolorea", DlgDocBgImage : "Atzeko Irudiaren URL-a", -DlgDocBgNoScroll : "Korritze gabeko Atzealdea", +DlgDocBgNoScroll : "Korritze gabeko Atzekaldea", DlgDocCText : "Testua", DlgDocCLink : "Estekak", DlgDocCVisited : "Bisitatutako Estekak", @@ -518,23 +494,12 @@ DlgTemplatesTitle : "Eduki Txantiloiak", DlgTemplatesSelMsg : "Mesedez txantiloia aukeratu editorean kargatzeko
(orain dauden edukiak galduko dira):", DlgTemplatesLoading : "Txantiloiak kargatzen. Itxaron mesedez...", DlgTemplatesNoTpl : "(Ez dago definitutako txantiloirik)", -DlgTemplatesReplace : "Ordeztu oraingo edukiak", +DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Honi buruz", DlgAboutBrowserInfoTab : "Nabigatzailearen Informazioa", DlgAboutLicenseTab : "Lizentzia", DlgAboutVersion : "bertsioa", -DlgAboutInfo : "Informazio gehiago eskuratzeko hona joan", - -// Div Dialog -DlgDivGeneralTab : "Orokorra", -DlgDivAdvancedTab : "Aurreratua", -DlgDivStyle : "Estiloa", -DlgDivInlineStyle : "Inline Estiloa", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Informazio gehiago eskuratzeko hona joan" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/fa.js b/httemplate/elements/fckeditor/editor/lang/fa.js index 3ca577c2d..e1bc9735e 100644 --- a/httemplate/elements/fckeditor/editor/lang/fa.js +++ b/httemplate/elements/fckeditor/editor/lang/fa.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "برداشتن فرمت", InsertLinkLbl : "پیوند", InsertLink : "گنجاندن/ویرایش ِپیوند", RemoveLink : "برداشتن پیوند", -VisitLink : "باز کردن پیوند", Anchor : "گنجاندن/ویرایش ِلنگر", -AnchorDelete : "برداشتن لنگر", InsertImageLbl : "تصویر", InsertImage : "گنجاندن/ویرایش ِتصویر", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "راست‌چین", BlockJustify : "بلوک‌چین", DecreaseIndent : "کاهش تورفتگی", IncreaseIndent : "افزایش تورفتگی", -Blockquote : "بلوک نقل قول", -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "واچیدن", Redo : "بازچیدن", NumberedListLbl : "فهرست شماره‌دار", @@ -109,27 +103,20 @@ SelectionField : "فیلد چندگزینه‌ای", ImageButton : "دکمهٴ تصویری", FitWindow : "بیشینه‌سازی ِاندازهٴ ویرایشگر", -ShowBlocks : "نمایش بلوک‌ها", // Context Menu EditLink : "ویرایش پیوند", CellCM : "سلول", RowCM : "سطر", ColumnCM : "ستون", -InsertRowAfter : "افزودن سطر بعد از", -InsertRowBefore : "افزودن سطر قبل از", +InsertRow : "گنجاندن سطر", DeleteRows : "حذف سطرها", -InsertColumnAfter : "افزودن ستون بعد از", -InsertColumnBefore : "افزودن ستون قبل از", +InsertColumn : "گنجاندن ستون", DeleteColumns : "حذف ستونها", -InsertCellAfter : "افزودن سلول بعد از", -InsertCellBefore : "افزودن سلول قبل از", +InsertCell : "گنجاندن سلول", DeleteCells : "حذف سلولها", MergeCells : "ادغام سلولها", -MergeRight : "ادغام به راست", -MergeDown : "ادغام به پایین", -HorizontalSplitCell : "جدا کردن افقی سلول", -VerticalSplitCell : "جدا کردن عمودی سلول", +SplitCell : "جداسازی سلول", TableDelete : "پاک‌کردن جدول", CellProperties : "ویژگیهای سلول", TableProperties : "ویژگیهای جدول", @@ -147,7 +134,7 @@ SelectionFieldProp : "ویژگیهای فیلد چندگزینه‌ای", TextareaProp : "ویژگیهای ناحیهٴ متنی", FormProp : "ویژگیهای فرم", -FontFormats : "نرمال;فرمت‌شده;آدرس;سرنویس 1;سرنویس 2;سرنویس 3;سرنویس 4;سرنویس 5;سرنویس 6;بند;(DIV)", +FontFormats : "نرمال;فرمت‌شده;آدرس;سرنویس 1;سرنویس 2;سرنویس 3;سرنویس 4;سرنویس 5;سرنویس 6;بند;(DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "پردازش XHTML. لطفا صبر کنید...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "مجموعهٴ نوارابزار \"%1\" وجود ندار NoActiveX : "تنظیمات امنیتی مرورگر شما ممکن است در بعضی از ویژگیهای مرورگر محدودیت ایجاد کند. شما باید گزینهٴ \"Run ActiveX controls and plug-ins\" را فعال کنید. ممکن است شما با خطاهایی روبرو باشید و متوجه کمبود ویژگیهایی شوید.", BrowseServerBlocked : "توانایی بازگشایی مرورگر منابع فراهم نیست. اطمینان حاصل کنید که تمامی برنامه‌های پیشگیری از نمایش popup را از کار بازداشته‌اید.", DialogBlocked : "توانایی بازگشایی پنجرهٴ کوچک ِگفتگو فراهم نیست. اطمینان حاصل کنید که تمامی برنامه‌های پیشگیری از نمایش popup را از کار بازداشته‌اید.", -VisitLinkBlocked : "امکان بازکردن یک پنجره جدید نیست. اطمینان حاصل کنید که تمامی برنامه‌های پیشگیری از نمایش popup را از کار بازداشته‌اید.", // Dialogs DlgBtnOK : "پذیرش", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "یک لنگر برگزینید", DlgLnkAnchorByName : "با نام لنگر", DlgLnkAnchorById : "با شناسهٴ المان", -DlgLnkNoAnchors : "(در این سند لنگری دردسترس نیست)", +DlgLnkNoAnchors : "(در این سند لنگری دردسترس نیست)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "نشانی پست الکترونیکی", DlgLnkEMailSubject : "موضوع پیام", DlgLnkEMailBody : "متن پیام", @@ -308,11 +294,6 @@ DlgTableCellSpace : "فاصلهٴ میان سلولها", DlgTableCellPad : "فاصلهٴ پرشده در سلول", DlgTableCaption : "عنوان", DlgTableSummary : "خلاصه", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "ویژگیهای سلول", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "بالا", DlgCellVerAlignMiddle : "میان", DlgCellVerAlignBottom : "پائین", DlgCellVerAlignBaseline : "خط‌پایه", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "گستردگی سطرها", DlgCellCollSpan : "گستردگی ستونها", DlgCellBackColor : "رنگ پس‌زمینه", DlgCellBorderColor : "رنگ لبه", DlgCellBtnSelect : "برگزینید...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "جستجو و جایگزینی", - // Find Dialog DlgFindTitle : "یافتن", DlgFindFindBtn : "یافتن", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "لطفا متن را با کلیدهای (Ctrl+V", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Sähköpostiosoite", DlgLnkEMailSubject : "Aihe", DlgLnkEMailBody : "Viesti", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Solujen väli", DlgTableCellPad : "Solujen sisennys", DlgTableCaption : "Otsikko", DlgTableSummary : "Yhteenveto", -DlgTableHeaders : "Ylätunnisteet", -DlgTableHeadersNone : "Ei ylätunnisteita", -DlgTableHeadersColumn : "Ensimmäinen sarake", -DlgTableHeadersRow : "Ensimmäinen rivi", -DlgTableHeadersBoth : "Molemmat", // Table Cell Dialog DlgCellTitle : "Solun ominaisuudet", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Ylös", DlgCellVerAlignMiddle : "Keskelle", DlgCellVerAlignBottom : "Alas", DlgCellVerAlignBaseline : "Tekstin alas", -DlgCellType : "Solun tyyppi", -DlgCellTypeData : "Sisältö", -DlgCellTypeHeader : "Ylätunniste", DlgCellRowSpan : "Rivin jatkuvuus", DlgCellCollSpan : "Sarakkeen jatkuvuus", DlgCellBackColor : "Taustaväri", DlgCellBorderColor : "Rajan väri", DlgCellBtnSelect : "Valitse...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Etsi ja korvaa", - // Find Dialog DlgFindTitle : "Etsi", DlgFindFindBtn : "Etsi", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Liitä painamalla (Ctrl+V) ja painamalla with ( and ) DlgLnkEMail : "Teldupost-adressa", DlgLnkEMailSubject : "Evni", DlgLnkEMailBody : "Breyðtekstur", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Fjarstøða millum meskar", DlgTableCellPad : "Meskubreddi", DlgTableCaption : "Tabellfrágreiðing", DlgTableSummary : "Samandráttur", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Mesku eginleikar", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Ovast", DlgCellVerAlignMiddle : "Miðjan", DlgCellVerAlignBottom : "Niðast", DlgCellVerAlignBaseline : "Basislinja", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Røðir, meskin fevnir um", DlgCellCollSpan : "Kolonnur, meskin fevnir um", DlgCellBackColor : "Bakgrundslitur", DlgCellBorderColor : "Litur á borda", DlgCellBtnSelect : "Vel...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Finn og broyt", - // Find Dialog DlgFindTitle : "Finn", DlgFindFindBtn : "Finn", @@ -362,19 +337,20 @@ DlgReplaceReplAllBtn : "Yvirskriva alt", DlgReplaceWordChk : "Bert heil orð", // Paste Operations / Dialog -PasteErrorCut : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at kvetta tekstin. Vinarliga nýt knappaborðið til at kvetta tekstin (CTRL+X).", +PasteErrorCut : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at kvetta tekstin. vinarliga nýt knappaborðið til at kvetta tekstin (CTRL+X).", PasteErrorCopy : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at avrita tekstin. Vinarliga nýt knappaborðið til at avrita tekstin (CTRL+C).", PasteAsText : "Innrita som reinan tekst", PasteFromWord : "Innrita fra Word", DlgPasteMsg2 : "Vinarliga koyr tekstin í hendan rútin við knappaborðinum (CTRL+V) og klikk á Góðtak.", -DlgPasteSec : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í beinleiðis atgongd til avritingarminnið. Tygum mugu royna aftur í hesum rútinum.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Forfjóna Font definitiónirnar", -DlgPasteRemoveStyles : "Strika typografi definitiónir", +DlgPasteRemoveStyles : "Strika Styles definitiónir", +DlgPasteCleanBox : "Reinskanarkassi", // Color Picker -ColorAutomatic : "Automatiskt", +ColorAutomatic : "Av sær sjálvum", ColorMoreColors : "Fleiri litir...", // Document Properties @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Um", DlgAboutBrowserInfoTab : "Upplýsingar um alnótskagan", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", -DlgAboutInfo : "Fyri fleiri upplýsingar, far til", - -// Div Dialog -DlgDivGeneralTab : "Generelt", -DlgDivAdvancedTab : "Fjølbroytt", -DlgDivStyle : "Typografi", -DlgDivInlineStyle : "Inline typografi", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Fyri fleiri upplýsingar, far til" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/fr-ca.js b/httemplate/elements/fckeditor/editor/lang/fr-ca.js deleted file mode 100644 index 2489bd65a..000000000 --- a/httemplate/elements/fckeditor/editor/lang/fr-ca.js +++ /dev/null @@ -1,539 +0,0 @@ -/* - * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben - * - * == BEGIN LICENSE == - * - * Licensed under the terms of any of the following licenses at your - * choice: - * - * - GNU General Public License Version 2 or later (the "GPL") - * http://www.gnu.org/licenses/gpl.html - * - * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") - * http://www.gnu.org/licenses/lgpl.html - * - * - Mozilla Public License Version 1.1 or later (the "MPL") - * http://www.mozilla.org/MPL/MPL-1.1.html - * - * == END LICENSE == - * - * Canadian French language file. - */ - -var FCKLang = -{ -// Language direction : "ltr" (left to right) or "rtl" (right to left). -Dir : "ltr", - -ToolbarCollapse : "Masquer Outils", -ToolbarExpand : "Afficher Outils", - -// Toolbar Items and Context Menu -Save : "Sauvegarder", -NewPage : "Nouvelle page", -Preview : "Previsualiser", -Cut : "Couper", -Copy : "Copier", -Paste : "Coller", -PasteText : "Coller en tant que texte", -PasteWord : "Coller en tant que Word (formaté)", -Print : "Imprimer", -SelectAll : "Tout sélectionner", -RemoveFormat : "Supprimer le formatage", -InsertLinkLbl : "Lien", -InsertLink : "Insérer/modifier le lien", -RemoveLink : "Supprimer le lien", -VisitLink : "Suivre le lien", -Anchor : "Insérer/modifier l'ancre", -AnchorDelete : "Supprimer l'ancre", -InsertImageLbl : "Image", -InsertImage : "Insérer/modifier l'image", -InsertFlashLbl : "Animation Flash", -InsertFlash : "Insérer/modifier l'animation Flash", -InsertTableLbl : "Tableau", -InsertTable : "Insérer/modifier le tableau", -InsertLineLbl : "Séparateur", -InsertLine : "Insérer un séparateur", -InsertSpecialCharLbl: "Caractères spéciaux", -InsertSpecialChar : "Insérer un caractère spécial", -InsertSmileyLbl : "Emoticon", -InsertSmiley : "Insérer un Emoticon", -About : "A propos de FCKeditor", -Bold : "Gras", -Italic : "Italique", -Underline : "Souligné", -StrikeThrough : "Barrer", -Subscript : "Indice", -Superscript : "Exposant", -LeftJustify : "Aligner à gauche", -CenterJustify : "Centrer", -RightJustify : "Aligner à Droite", -BlockJustify : "Texte justifié", -DecreaseIndent : "Diminuer le retrait", -IncreaseIndent : "Augmenter le retrait", -Blockquote : "Citation", -CreateDiv : "Créer Balise Div", -EditDiv : "Modifier Balise Div", -DeleteDiv : "Supprimer Balise Div", -Undo : "Annuler", -Redo : "Refaire", -NumberedListLbl : "Liste numérotée", -NumberedList : "Insérer/supprimer la liste numérotée", -BulletedListLbl : "Liste à puces", -BulletedList : "Insérer/supprimer la liste à puces", -ShowTableBorders : "Afficher les bordures du tableau", -ShowDetails : "Afficher les caractères invisibles", -Style : "Style", -FontFormat : "Format", -Font : "Police", -FontSize : "Taille", -TextColor : "Couleur de caractère", -BGColor : "Couleur de fond", -Source : "Source", -Find : "Chercher", -Replace : "Remplacer", -SpellCheck : "Orthographe", -UniversalKeyboard : "Clavier universel", -PageBreakLbl : "Saut de page", -PageBreak : "Insérer un saut de page", - -Form : "Formulaire", -Checkbox : "Case à cocher", -RadioButton : "Bouton radio", -TextField : "Champ texte", -Textarea : "Zone de texte", -HiddenField : "Champ caché", -Button : "Bouton", -SelectionField : "Champ de sélection", -ImageButton : "Bouton image", - -FitWindow : "Edition pleine page", -ShowBlocks : "Afficher les blocs", - -// Context Menu -EditLink : "Modifier le lien", -CellCM : "Cellule", -RowCM : "Ligne", -ColumnCM : "Colonne", -InsertRowAfter : "Insérer une ligne après", -InsertRowBefore : "Insérer une ligne avant", -DeleteRows : "Supprimer des lignes", -InsertColumnAfter : "Insérer une colonne après", -InsertColumnBefore : "Insérer une colonne avant", -DeleteColumns : "Supprimer des colonnes", -InsertCellAfter : "Insérer une cellule après", -InsertCellBefore : "Insérer une cellule avant", -DeleteCells : "Supprimer des cellules", -MergeCells : "Fusionner les cellules", -MergeRight : "Fusionner à droite", -MergeDown : "Fusionner en bas", -HorizontalSplitCell : "Scinder la cellule horizontalement", -VerticalSplitCell : "Scinder la cellule verticalement", -TableDelete : "Supprimer le tableau", -CellProperties : "Propriétés de cellule", -TableProperties : "Propriétés du tableau", -ImageProperties : "Propriétés de l'image", -FlashProperties : "Propriétés de l'animation Flash", - -AnchorProp : "Propriétés de l'ancre", -ButtonProp : "Propriétés du bouton", -CheckboxProp : "Propriétés de la case à cocher", -HiddenFieldProp : "Propriétés du champ caché", -RadioButtonProp : "Propriétés du bouton radio", -ImageButtonProp : "Propriétés du bouton image", -TextFieldProp : "Propriétés du champ texte", -SelectionFieldProp : "Propriétés de la liste/du menu", -TextareaProp : "Propriétés de la zone de texte", -FormProp : "Propriétés du formulaire", - -FontFormats : "Normal;Formaté;Adresse;En-tête 1;En-tête 2;En-tête 3;En-tête 4;En-tête 5;En-tête 6;Normal (DIV)", - -// Alerts and Messages -ProcessingXHTML : "Calcul XHTML. Veuillez patienter...", -Done : "Terminé", -PasteWordConfirm : "Le texte à coller semble provenir de Word. Désirez-vous le nettoyer avant de coller?", -NotCompatiblePaste : "Cette commande nécessite Internet Explorer version 5.5 et plus. Souhaitez-vous coller sans nettoyage?", -UnknownToolbarItem : "Élément de barre d'outil inconnu \"%1\"", -UnknownCommand : "Nom de commande inconnu \"%1\"", -NotImplemented : "Commande indisponible", -UnknownToolbarSet : "La barre d'outils \"%1\" n'existe pas", -NoActiveX : "Les paramètres de sécurité de votre navigateur peuvent limiter quelques fonctionnalités de l'éditeur. Veuillez activer l'option \"Exécuter les contrôles ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations.", -BrowseServerBlocked : "Le navigateur n'a pas pu être ouvert. Assurez-vous que les bloqueurs de popups soient désactivés.", -DialogBlocked : "La fenêtre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient désactivés.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING - -// Dialogs -DlgBtnOK : "OK", -DlgBtnCancel : "Annuler", -DlgBtnClose : "Fermer", -DlgBtnBrowseServer : "Parcourir le serveur", -DlgAdvancedTag : "Avancée", -DlgOpOther : "", -DlgInfoTab : "Info", -DlgAlertUrl : "Veuillez saisir l'URL", - -// General Dialogs Labels -DlgGenNotSet : "", -DlgGenId : "Id", -DlgGenLangDir : "Sens d'écriture", -DlgGenLangDirLtr : "De gauche à droite (LTR)", -DlgGenLangDirRtl : "De droite à gauche (RTL)", -DlgGenLangCode : "Code langue", -DlgGenAccessKey : "Équivalent clavier", -DlgGenName : "Nom", -DlgGenTabIndex : "Ordre de tabulation", -DlgGenLongDescr : "URL de description longue", -DlgGenClass : "Classes de feuilles de style", -DlgGenTitle : "Titre", -DlgGenContType : "Type de contenu", -DlgGenLinkCharset : "Encodage de caractère", -DlgGenStyle : "Style", - -// Image Dialog -DlgImgTitle : "Propriétés de l'image", -DlgImgInfoTab : "Informations sur l'image", -DlgImgBtnUpload : "Envoyer sur le serveur", -DlgImgURL : "URL", -DlgImgUpload : "Télécharger", -DlgImgAlt : "Texte de remplacement", -DlgImgWidth : "Largeur", -DlgImgHeight : "Hauteur", -DlgImgLockRatio : "Garder les proportions", -DlgBtnResetSize : "Taille originale", -DlgImgBorder : "Bordure", -DlgImgHSpace : "Espacement horizontal", -DlgImgVSpace : "Espacement vertical", -DlgImgAlign : "Alignement", -DlgImgAlignLeft : "Gauche", -DlgImgAlignAbsBottom: "Abs Bas", -DlgImgAlignAbsMiddle: "Abs Milieu", -DlgImgAlignBaseline : "Bas du texte", -DlgImgAlignBottom : "Bas", -DlgImgAlignMiddle : "Milieu", -DlgImgAlignRight : "Droite", -DlgImgAlignTextTop : "Haut du texte", -DlgImgAlignTop : "Haut", -DlgImgPreview : "Prévisualisation", -DlgImgAlertUrl : "Veuillez saisir l'URL de l'image", -DlgImgLinkTab : "Lien", - -// Flash Dialog -DlgFlashTitle : "Propriétés de l'animation Flash", -DlgFlashChkPlay : "Lecture automatique", -DlgFlashChkLoop : "Boucle", -DlgFlashChkMenu : "Activer le menu Flash", -DlgFlashScale : "Affichage", -DlgFlashScaleAll : "Par défaut (tout montrer)", -DlgFlashScaleNoBorder : "Sans bordure", -DlgFlashScaleFit : "Ajuster aux dimensions", - -// Link Dialog -DlgLnkWindowTitle : "Propriétés du lien", -DlgLnkInfoTab : "Informations sur le lien", -DlgLnkTargetTab : "Destination", - -DlgLnkType : "Type de lien", -DlgLnkTypeURL : "URL", -DlgLnkTypeAnchor : "Ancre dans cette page", -DlgLnkTypeEMail : "E-Mail", -DlgLnkProto : "Protocole", -DlgLnkProtoOther : "", -DlgLnkURL : "URL", -DlgLnkAnchorSel : "Sélectionner une ancre", -DlgLnkAnchorByName : "Par nom", -DlgLnkAnchorById : "Par id", -DlgLnkNoAnchors : "(Pas d'ancre disponible dans le document)", -DlgLnkEMail : "Adresse E-Mail", -DlgLnkEMailSubject : "Sujet du message", -DlgLnkEMailBody : "Corps du message", -DlgLnkUpload : "Télécharger", -DlgLnkBtnUpload : "Envoyer sur le serveur", - -DlgLnkTarget : "Destination", -DlgLnkTargetFrame : "", -DlgLnkTargetPopup : "", -DlgLnkTargetBlank : "Nouvelle fenêtre (_blank)", -DlgLnkTargetParent : "Fenêtre mère (_parent)", -DlgLnkTargetSelf : "Même fenêtre (_self)", -DlgLnkTargetTop : "Fenêtre supérieure (_top)", -DlgLnkTargetFrameName : "Nom du cadre de destination", -DlgLnkPopWinName : "Nom de la fenêtre popup", -DlgLnkPopWinFeat : "Caractéristiques de la fenêtre popup", -DlgLnkPopResize : "Taille modifiable", -DlgLnkPopLocation : "Barre d'adresses", -DlgLnkPopMenu : "Barre de menu", -DlgLnkPopScroll : "Barres de défilement", -DlgLnkPopStatus : "Barre d'état", -DlgLnkPopToolbar : "Barre d'outils", -DlgLnkPopFullScrn : "Plein écran (IE)", -DlgLnkPopDependent : "Dépendante (Netscape)", -DlgLnkPopWidth : "Largeur", -DlgLnkPopHeight : "Hauteur", -DlgLnkPopLeft : "Position à partir de la gauche", -DlgLnkPopTop : "Position à partir du haut", - -DlnLnkMsgNoUrl : "Veuillez saisir l'URL", -DlnLnkMsgNoEMail : "Veuillez saisir l'adresse e-mail", -DlnLnkMsgNoAnchor : "Veuillez sélectionner une ancre", -DlnLnkMsgInvPopName : "Le nom de la fenêtre popup doit commencer par une lettre et ne doit pas contenir d'espace", - -// Color Dialog -DlgColorTitle : "Sélectionner", -DlgColorBtnClear : "Effacer", -DlgColorHighlight : "Prévisualisation", -DlgColorSelected : "Sélectionné", - -// Smiley Dialog -DlgSmileyTitle : "Insérer un Emoticon", - -// Special Character Dialog -DlgSpecialCharTitle : "Insérer un caractère spécial", - -// Table Dialog -DlgTableTitle : "Propriétés du tableau", -DlgTableRows : "Lignes", -DlgTableColumns : "Colonnes", -DlgTableBorder : "Taille de la bordure", -DlgTableAlign : "Alignement", -DlgTableAlignNotSet : "", -DlgTableAlignLeft : "Gauche", -DlgTableAlignCenter : "Centré", -DlgTableAlignRight : "Droite", -DlgTableWidth : "Largeur", -DlgTableWidthPx : "pixels", -DlgTableWidthPc : "pourcentage", -DlgTableHeight : "Hauteur", -DlgTableCellSpace : "Espacement", -DlgTableCellPad : "Contour", -DlgTableCaption : "Titre", -DlgTableSummary : "Résumé", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING - -// Table Cell Dialog -DlgCellTitle : "Propriétés de la cellule", -DlgCellWidth : "Largeur", -DlgCellWidthPx : "pixels", -DlgCellWidthPc : "pourcentage", -DlgCellHeight : "Hauteur", -DlgCellWordWrap : "Retour à la ligne", -DlgCellWordWrapNotSet : "", -DlgCellWordWrapYes : "Oui", -DlgCellWordWrapNo : "Non", -DlgCellHorAlign : "Alignement horizontal", -DlgCellHorAlignNotSet : "", -DlgCellHorAlignLeft : "Gauche", -DlgCellHorAlignCenter : "Centré", -DlgCellHorAlignRight: "Droite", -DlgCellVerAlign : "Alignement vertical", -DlgCellVerAlignNotSet : "", -DlgCellVerAlignTop : "Haut", -DlgCellVerAlignMiddle : "Milieu", -DlgCellVerAlignBottom : "Bas", -DlgCellVerAlignBaseline : "Bas du texte", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING -DlgCellRowSpan : "Lignes fusionnées", -DlgCellCollSpan : "Colonnes fusionnées", -DlgCellBackColor : "Couleur de fond", -DlgCellBorderColor : "Couleur de bordure", -DlgCellBtnSelect : "Sélectionner...", - -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Chercher et Remplacer", - -// Find Dialog -DlgFindTitle : "Chercher", -DlgFindFindBtn : "Chercher", -DlgFindNotFoundMsg : "Le texte indiqué est introuvable.", - -// Replace Dialog -DlgReplaceTitle : "Remplacer", -DlgReplaceFindLbl : "Rechercher:", -DlgReplaceReplaceLbl : "Remplacer par:", -DlgReplaceCaseChk : "Respecter la casse", -DlgReplaceReplaceBtn : "Remplacer", -DlgReplaceReplAllBtn : "Tout remplacer", -DlgReplaceWordChk : "Mot entier", - -// Paste Operations / Dialog -PasteErrorCut : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de couper automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+X).", -PasteErrorCopy : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de copier automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+C).", - -PasteAsText : "Coller comme texte", -PasteFromWord : "Coller à partir de Word", - -DlgPasteMsg2 : "Veuillez coller dans la zone ci-dessous en utilisant le clavier (Ctrl+V) et appuyer sur OK.", -DlgPasteSec : "A cause des paramètres de sécurité de votre navigateur, l'éditeur ne peut accéder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre.", -DlgPasteIgnoreFont : "Ignorer les polices de caractères", -DlgPasteRemoveStyles : "Supprimer les styles", - -// Color Picker -ColorAutomatic : "Automatique", -ColorMoreColors : "Plus de couleurs...", - -// Document Properties -DocProps : "Propriétés du document", - -// Anchor Dialog -DlgAnchorTitle : "Propriétés de l'ancre", -DlgAnchorName : "Nom de l'ancre", -DlgAnchorErrorName : "Veuillez saisir le nom de l'ancre", - -// Speller Pages Dialog -DlgSpellNotInDic : "Pas dans le dictionnaire", -DlgSpellChangeTo : "Changer en", -DlgSpellBtnIgnore : "Ignorer", -DlgSpellBtnIgnoreAll : "Ignorer tout", -DlgSpellBtnReplace : "Remplacer", -DlgSpellBtnReplaceAll : "Remplacer tout", -DlgSpellBtnUndo : "Annuler", -DlgSpellNoSuggestions : "- Pas de suggestion -", -DlgSpellProgress : "Vérification d'orthographe en cours...", -DlgSpellNoMispell : "Vérification d'orthographe terminée: pas d'erreur trouvée", -DlgSpellNoChanges : "Vérification d'orthographe terminée: Pas de modifications", -DlgSpellOneChange : "Vérification d'orthographe terminée: Un mot modifié", -DlgSpellManyChanges : "Vérification d'orthographe terminée: %1 mots modifiés", - -IeSpellDownload : "Le Correcteur d'orthographe n'est pas installé. Souhaitez-vous le télécharger maintenant?", - -// Button Dialog -DlgButtonText : "Texte (Valeur)", -DlgButtonType : "Type", -DlgButtonTypeBtn : "Bouton", -DlgButtonTypeSbm : "Soumettre", -DlgButtonTypeRst : "Réinitialiser", - -// Checkbox and Radio Button Dialogs -DlgCheckboxName : "Nom", -DlgCheckboxValue : "Valeur", -DlgCheckboxSelected : "Sélectionné", - -// Form Dialog -DlgFormName : "Nom", -DlgFormAction : "Action", -DlgFormMethod : "Méthode", - -// Select Field Dialog -DlgSelectName : "Nom", -DlgSelectValue : "Valeur", -DlgSelectSize : "Taille", -DlgSelectLines : "lignes", -DlgSelectChkMulti : "Sélection multiple", -DlgSelectOpAvail : "Options disponibles", -DlgSelectOpText : "Texte", -DlgSelectOpValue : "Valeur", -DlgSelectBtnAdd : "Ajouter", -DlgSelectBtnModify : "Modifier", -DlgSelectBtnUp : "Monter", -DlgSelectBtnDown : "Descendre", -DlgSelectBtnSetValue : "Valeur sélectionnée", -DlgSelectBtnDelete : "Supprimer", - -// Textarea Dialog -DlgTextareaName : "Nom", -DlgTextareaCols : "Colonnes", -DlgTextareaRows : "Lignes", - -// Text Field Dialog -DlgTextName : "Nom", -DlgTextValue : "Valeur", -DlgTextCharWidth : "Largeur en caractères", -DlgTextMaxChars : "Nombre maximum de caractères", -DlgTextType : "Type", -DlgTextTypeText : "Texte", -DlgTextTypePass : "Mot de passe", - -// Hidden Field Dialog -DlgHiddenName : "Nom", -DlgHiddenValue : "Valeur", - -// Bulleted List Dialog -BulletedListProp : "Propriétés de liste à puces", -NumberedListProp : "Propriétés de liste numérotée", -DlgLstStart : "Début", -DlgLstType : "Type", -DlgLstTypeCircle : "Cercle", -DlgLstTypeDisc : "Disque", -DlgLstTypeSquare : "Carré", -DlgLstTypeNumbers : "Nombres (1, 2, 3)", -DlgLstTypeLCase : "Lettres minuscules (a, b, c)", -DlgLstTypeUCase : "Lettres majuscules (A, B, C)", -DlgLstTypeSRoman : "Chiffres romains minuscules (i, ii, iii)", -DlgLstTypeLRoman : "Chiffres romains majuscules (I, II, III)", - -// Document Properties Dialog -DlgDocGeneralTab : "Général", -DlgDocBackTab : "Fond", -DlgDocColorsTab : "Couleurs et Marges", -DlgDocMetaTab : "Méta-Données", - -DlgDocPageTitle : "Titre de la page", -DlgDocLangDir : "Sens d'écriture", -DlgDocLangDirLTR : "De la gauche vers la droite (LTR)", -DlgDocLangDirRTL : "De la droite vers la gauche (RTL)", -DlgDocLangCode : "Code langue", -DlgDocCharSet : "Encodage de caractère", -DlgDocCharSetCE : "Europe Centrale", -DlgDocCharSetCT : "Chinois Traditionnel (Big5)", -DlgDocCharSetCR : "Cyrillique", -DlgDocCharSetGR : "Grecque", -DlgDocCharSetJP : "Japonais", -DlgDocCharSetKR : "Coréen", -DlgDocCharSetTR : "Turcque", -DlgDocCharSetUN : "Unicode (UTF-8)", -DlgDocCharSetWE : "Occidental", -DlgDocCharSetOther : "Autre encodage de caractère", - -DlgDocDocType : "Type de document", -DlgDocDocTypeOther : "Autre type de document", -DlgDocIncXHTML : "Inclure les déclarations XHTML", -DlgDocBgColor : "Couleur de fond", -DlgDocBgImage : "Image de fond", -DlgDocBgNoScroll : "Image fixe sans défilement", -DlgDocCText : "Texte", -DlgDocCLink : "Lien", -DlgDocCVisited : "Lien visité", -DlgDocCActive : "Lien activé", -DlgDocMargins : "Marges", -DlgDocMaTop : "Haut", -DlgDocMaLeft : "Gauche", -DlgDocMaRight : "Droite", -DlgDocMaBottom : "Bas", -DlgDocMeIndex : "Mots-clés (séparés par des virgules)", -DlgDocMeDescr : "Description", -DlgDocMeAuthor : "Auteur", -DlgDocMeCopy : "Copyright", -DlgDocPreview : "Prévisualisation", - -// Templates Dialog -Templates : "Modèles", -DlgTemplatesTitle : "Modèles de contenu", -DlgTemplatesSelMsg : "Sélectionner le modèle à ouvrir dans l'éditeur
(le contenu actuel sera remplacé):", -DlgTemplatesLoading : "Chargement de la liste des modèles. Veuillez patienter...", -DlgTemplatesNoTpl : "(Aucun modèle disponible)", -DlgTemplatesReplace : "Remplacer tout le contenu actuel", - -// About Dialog -DlgAboutAboutTab : "Á propos de", -DlgAboutBrowserInfoTab : "Navigateur", -DlgAboutLicenseTab : "License", -DlgAboutVersion : "Version", -DlgAboutInfo : "Pour plus d'informations, visiter", - -// Div Dialog -DlgDivGeneralTab : "Général", -DlgDivAdvancedTab : "Avancé", -DlgDivStyle : "Style", -DlgDivInlineStyle : "Attribut Style", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; diff --git a/httemplate/elements/fckeditor/editor/lang/fr.js b/httemplate/elements/fckeditor/editor/lang/fr.js index a03558f74..6d46fa0fc 100644 --- a/httemplate/elements/fckeditor/editor/lang/fr.js +++ b/httemplate/elements/fckeditor/editor/lang/fr.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Supprimer le format", InsertLinkLbl : "Lien", InsertLink : "Insérer/modifier le lien", RemoveLink : "Supprimer le lien", -VisitLink : "Suivre le lien", Anchor : "Insérer/modifier l'ancre", -AnchorDelete : "Supprimer l'ancre", InsertImageLbl : "Image", InsertImage : "Insérer/modifier l'image", InsertFlashLbl : "Animation Flash", @@ -72,10 +70,6 @@ RightJustify : "Aligné à Droite", BlockJustify : "Texte justifié", DecreaseIndent : "Diminuer le retrait", IncreaseIndent : "Augmenter le retrait", -Blockquote : "Citation", -CreateDiv : "Créer Balise Div", -EditDiv : "Modifier Balise Div", -DeleteDiv : "Supprimer Balise Div", Undo : "Annuler", Redo : "Refaire", NumberedListLbl : "Liste numérotée", @@ -109,27 +103,20 @@ SelectionField : "Liste/menu", ImageButton : "Bouton image", FitWindow : "Edition pleine page", -ShowBlocks : "Afficher les blocs", // Context Menu EditLink : "Modifier le lien", CellCM : "Cellule", RowCM : "Ligne", ColumnCM : "Colonne", -InsertRowAfter : "Insérer une ligne après", -InsertRowBefore : "Insérer une ligne avant", +InsertRow : "Insérer une ligne", DeleteRows : "Supprimer des lignes", -InsertColumnAfter : "Insérer une colonne après", -InsertColumnBefore : "Insérer une colonne avant", +InsertColumn : "Insérer une colonne", DeleteColumns : "Supprimer des colonnes", -InsertCellAfter : "Insérer une cellule après", -InsertCellBefore : "Insérer une cellule avant", +InsertCell : "Insérer une cellule", DeleteCells : "Supprimer des cellules", MergeCells : "Fusionner les cellules", -MergeRight : "Fusionner à droite", -MergeDown : "Fusionner en bas", -HorizontalSplitCell : "Scinder la cellule horizontalement", -VerticalSplitCell : "Scinder la cellule verticalement", +SplitCell : "Scinder les cellules", TableDelete : "Supprimer le tableau", CellProperties : "Propriétés de cellule", TableProperties : "Propriétés du tableau", @@ -147,7 +134,7 @@ SelectionFieldProp : "Propriétés de la liste/du menu", TextareaProp : "Propriétés de la zone de texte", FormProp : "Propriétés du formulaire", -FontFormats : "Normal;Formaté;Adresse;En-tête 1;En-tête 2;En-tête 3;En-tête 4;En-tête 5;En-tête 6;Normal (DIV)", +FontFormats : "Normal;Formaté;Adresse;En-tête 1;En-tête 2;En-tête 3;En-tête 4;En-tête 5;En-tête 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Calcul XHTML. Veuillez patienter...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "La barre d'outils \"%1\" n'existe pas", NoActiveX : "Les paramètres de sécurité de votre navigateur peuvent limiter quelques fonctionnalités de l'éditeur. Veuillez activer l'option \"Exécuter les contrôles ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations.", BrowseServerBlocked : "Le navigateur n'a pas pu être ouvert. Assurez-vous que les bloqueurs de popups soient désactivés.", DialogBlocked : "La fenêtre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient désactivés.", -VisitLinkBlocked : "Impossible d'ouvrir une nouvelle fenêtre. Assurez-vous que les bloqueurs de popups soient désactivés.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Sélectionner une ancre", DlgLnkAnchorByName : "Par nom", DlgLnkAnchorById : "Par id", -DlgLnkNoAnchors : "(Pas d'ancre disponible dans le document)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Adresse E-Mail", DlgLnkEMailSubject : "Sujet du message", DlgLnkEMailBody : "Corps du message", @@ -251,7 +237,7 @@ DlgLnkUpload : "Télécharger", DlgLnkBtnUpload : "Envoyer sur le serveur", DlgLnkTarget : "Destination", -DlgLnkTargetFrame : "", +DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nouvelle fenêtre (_blank)", DlgLnkTargetParent : "Fenêtre mère (_parent)", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Espacement", DlgTableCellPad : "Contour", DlgTableCaption : "Titre", DlgTableSummary : "Résumé", -DlgTableHeaders : "Entêtes", -DlgTableHeadersNone : "Sans", -DlgTableHeadersColumn : "Première colonne", -DlgTableHeadersRow : "Première Ligne", -DlgTableHeadersBoth : "Les 2", // Table Cell Dialog DlgCellTitle : "Propriétés de la cellule", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Haut", DlgCellVerAlignMiddle : "Milieu", DlgCellVerAlignBottom : "Bas", DlgCellVerAlignBaseline : "Bas du texte", -DlgCellType : "Type de Cellule", -DlgCellTypeData : "Données", -DlgCellTypeHeader : "Entête", DlgCellRowSpan : "Lignes fusionnées", DlgCellCollSpan : "Colonnes fusionnées", DlgCellBackColor : "Fond", DlgCellBorderColor : "Bordure", DlgCellBtnSelect : "Choisir...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Chercher et Remplacer", - // Find Dialog DlgFindTitle : "Chercher", DlgFindFindBtn : "Chercher", @@ -369,9 +344,10 @@ PasteAsText : "Coller comme texte", PasteFromWord : "Coller à partir de Word", DlgPasteMsg2 : "Veuillez coller dans la zone ci-dessous en utilisant le clavier (Ctrl+V) et cliquez sur OK.", -DlgPasteSec : "A cause des paramètres de sécurité de votre navigateur, l'éditeur ne peut accéder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorer les polices de caractères", DlgPasteRemoveStyles : "Supprimer les styles", +DlgPasteCleanBox : "Effacer le contenu", // Color Picker ColorAutomatic : "Automatique", @@ -483,7 +459,7 @@ DlgDocCharSetCE : "Europe Centrale", DlgDocCharSetCT : "Chinois Traditionnel (Big5)", DlgDocCharSetCR : "Cyrillique", DlgDocCharSetGR : "Grec", -DlgDocCharSetJP : "Japonais", +DlgDocCharSetJP : "Japanais", DlgDocCharSetKR : "Coréen", DlgDocCharSetTR : "Turc", DlgDocCharSetUN : "Unicode (UTF-8)", @@ -522,18 +498,7 @@ DlgTemplatesReplace : "Remplacer tout le contenu", // About Dialog DlgAboutAboutTab : "A propos de", DlgAboutBrowserInfoTab : "Navigateur", -DlgAboutLicenseTab : "Licence", -DlgAboutVersion : "Version", -DlgAboutInfo : "Pour plus d'informations, aller à", - -// Div Dialog -DlgDivGeneralTab : "Général", -DlgDivAdvancedTab : "Avancé", -DlgDivStyle : "Style", -DlgDivInlineStyle : "Attribut Style", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutLicenseTab : "License", +DlgAboutVersion : "version", +DlgAboutInfo : "Pour plus d'informations, aller à" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/gl.js b/httemplate/elements/fckeditor/editor/lang/gl.js index 311bfb457..238d108a0 100644 --- a/httemplate/elements/fckeditor/editor/lang/gl.js +++ b/httemplate/elements/fckeditor/editor/lang/gl.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Eliminar Formato", InsertLinkLbl : "Ligazón", InsertLink : "Inserir/Editar Ligazón", RemoveLink : "Eliminar Ligazón", -VisitLink : "Open Link", //MISSING Anchor : "Inserir/Editar Referencia", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "Imaxe", InsertImage : "Inserir/Editar Imaxe", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Aliñar á Dereita", BlockJustify : "Xustificado", DecreaseIndent : "Disminuir Sangría", IncreaseIndent : "Aumentar Sangría", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Desfacer", Redo : "Refacer", NumberedListLbl : "Lista Numerada", @@ -109,27 +103,20 @@ SelectionField : "Campo de Selección", ImageButton : "Botón de Imaxe", FitWindow : "Maximizar o tamaño do editor", -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Editar Ligazón", CellCM : "Cela", RowCM : "Fila", ColumnCM : "Columna", -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "Inserir Fila", DeleteRows : "Borrar Filas", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "Inserir Columna", DeleteColumns : "Borrar Columnas", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "Inserir Cela", DeleteCells : "Borrar Cela", MergeCells : "Unir Celas", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "Partir Celas", TableDelete : "Borrar Táboa", CellProperties : "Propriedades da Cela", TableProperties : "Propriedades da Táboa", @@ -147,7 +134,7 @@ SelectionFieldProp : "Propriedades do Campo de Selección", TextareaProp : "Propriedades da Área de Texto", FormProp : "Propriedades do Formulario", -FontFormats : "Normal;Formateado;Enderezo;Enacabezado 1;Encabezado 2;Encabezado 3;Encabezado 4;Encabezado 5;Encabezado 6;Paragraph (DIV)", +FontFormats : "Normal;Formateado;Enderezo;Enacabezado 1;Encabezado 2;Encabezado 3;Encabezado 4;Encabezado 5;Encabezado 6;Paragraph (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Procesando XHTML. Por facor, agarde...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "O conxunto de ferramentas \"%1\" non existe", NoActiveX : "As opcións de seguridade do seu navegador poderían limitar algunha das características de editor. Debe activar a opción \"Executar controis ActiveX e plug-ins\". Pode notar que faltan características e experimentar erros", BrowseServerBlocked : "Non se poido abrir o navegador de recursos. Asegúrese de que están desactivados os bloqueadores de xanelas emerxentes", DialogBlocked : "Non foi posible abrir a xanela de diálogo. Asegúrese de que están desactivados os bloqueadores de xanelas emerxentes", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Seleccionar unha Referencia", DlgLnkAnchorByName : "Por Nome de Referencia", DlgLnkAnchorById : "Por Element Id", -DlgLnkNoAnchors : "(Non hai referencias disponibles no documento)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Enderezo de E-Mail", DlgLnkEMailSubject : "Asunto do Mensaxe", DlgLnkEMailBody : "Corpo do Mensaxe", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Marxe entre Celas", DlgTableCellPad : "Marxe interior", DlgTableCaption : "Título", DlgTableSummary : "Sumario", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Propriedades da Cela", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Arriba", DlgCellVerAlignMiddle : "Medio", DlgCellVerAlignBottom : "Abaixo", DlgCellVerAlignBaseline : "Liña de Base", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Ocupar Filas", DlgCellCollSpan : "Ocupar Columnas", DlgCellBackColor : "Color de Fondo", DlgCellBorderColor : "Color de Borde", DlgCellBtnSelect : "Seleccionar...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Procurar", DlgFindFindBtn : "Procurar", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Por favor, pegue dentro do seguinte cadro usando o teclado (", -DlgInfoTab : "સૂચના", -DlgAlertUrl : "URL ઇન્સર્ટ કરો", - -// General Dialogs Labels -DlgGenNotSet : "<સેટ નથી>", -DlgGenId : "Id", -DlgGenLangDir : "ભાષા લેખવાની પદ્ધતિ", -DlgGenLangDirLtr : "ડાબે થી જમણે (LTR)", -DlgGenLangDirRtl : "જમણે થી ડાબે (RTL)", -DlgGenLangCode : "ભાષા કોડ", -DlgGenAccessKey : "ઍક્સેસ કી", -DlgGenName : "નામ", -DlgGenTabIndex : "ટૅબ ઇન્ડેક્સ", -DlgGenLongDescr : "વધારે માહિતી માટે URL", -DlgGenClass : "સ્ટાઇલ-શીટ ક્લાસ", -DlgGenTitle : "મુખ્ય મથાળું", -DlgGenContType : "મુખ્ય કન્ટેન્ટ પ્રકાર", -DlgGenLinkCharset : "લિંક રિસૉર્સ કૅરિક્ટર સેટ", -DlgGenStyle : "સ્ટાઇલ", - -// Image Dialog -DlgImgTitle : "ચિત્રના ગુણ", -DlgImgInfoTab : "ચિત્ર ની જાણકારી", -DlgImgBtnUpload : "આ સર્વરને મોકલવું", -DlgImgURL : "URL", -DlgImgUpload : "અપલોડ", -DlgImgAlt : "ઑલ્ટર્નટ ટેક્સ્ટ", -DlgImgWidth : "પહોળાઈ", -DlgImgHeight : "ઊંચાઈ", -DlgImgLockRatio : "લૉક ગુણોત્તર", -DlgBtnResetSize : "રીસેટ સાઇઝ", -DlgImgBorder : "બોર્ડર", -DlgImgHSpace : "સમસ્તરીય જગ્યા", -DlgImgVSpace : "લંબરૂપ જગ્યા", -DlgImgAlign : "લાઇનદોરીમાં ગોઠવવું", -DlgImgAlignLeft : "ડાબી બાજુ ગોઠવવું", -DlgImgAlignAbsBottom: "Abs નીચે", -DlgImgAlignAbsMiddle: "Abs ઉપર", -DlgImgAlignBaseline : "આધાર લીટી", -DlgImgAlignBottom : "નીચે", -DlgImgAlignMiddle : "વચ્ચે", -DlgImgAlignRight : "જમણી", -DlgImgAlignTextTop : "ટેક્સ્ટ ઉપર", -DlgImgAlignTop : "ઉપર", -DlgImgPreview : "પૂર્વદર્શન", -DlgImgAlertUrl : "ચિત્રની URL ટાઇપ કરો", -DlgImgLinkTab : "લિંક", - -// Flash Dialog -DlgFlashTitle : "ફ્લૅશ ગુણ", -DlgFlashChkPlay : "ઑટો/સ્વયં પ્લે", -DlgFlashChkLoop : "લૂપ", -DlgFlashChkMenu : "ફ્લૅશ મેન્યૂ નો પ્રયોગ કરો", -DlgFlashScale : "સ્કેલ", -DlgFlashScaleAll : "સ્કેલ ઓલ/બધુ બતાવો", -DlgFlashScaleNoBorder : "સ્કેલ બોર્ડર વગર", -DlgFlashScaleFit : "સ્કેલ એકદમ ફીટ", - -// Link Dialog -DlgLnkWindowTitle : "લિંક", -DlgLnkInfoTab : "લિંક ઇન્ફૉ ટૅબ", -DlgLnkTargetTab : "ટાર્ગેટ/લક્ષ્ય ટૅબ", - -DlgLnkType : "લિંક પ્રકાર", -DlgLnkTypeURL : "URL", -DlgLnkTypeAnchor : "આ પેજનો ઍંકર", -DlgLnkTypeEMail : "ઈ-મેલ", -DlgLnkProto : "પ્રોટોકૉલ", -DlgLnkProtoOther : "<અન્ય>", -DlgLnkURL : "URL", -DlgLnkAnchorSel : "ઍંકર પસંદ કરો", -DlgLnkAnchorByName : "ઍંકર નામથી પસંદ કરો", -DlgLnkAnchorById : "ઍંકર એલિમન્ટ Id થી પસંદ કરો", -DlgLnkNoAnchors : "(ડૉક્યુમન્ટમાં ઍંકરની સંખ્યા)", -DlgLnkEMail : "ઈ-મેલ સરનામું", -DlgLnkEMailSubject : "ઈ-મેલ વિષય", -DlgLnkEMailBody : "સંદેશ", -DlgLnkUpload : "અપલોડ", -DlgLnkBtnUpload : "આ સર્વરને મોકલવું", - -DlgLnkTarget : "ટાર્ગેટ/લક્ષ્ય", -DlgLnkTargetFrame : "<ફ્રેમ>", -DlgLnkTargetPopup : "<પૉપ-અપ વિન્ડો>", -DlgLnkTargetBlank : "નવી વિન્ડો (_blank)", -DlgLnkTargetParent : "મૂળ વિન્ડો (_parent)", -DlgLnkTargetSelf : "આજ વિન્ડો (_self)", -DlgLnkTargetTop : "ઉપરની વિન્ડો (_top)", -DlgLnkTargetFrameName : "ટાર્ગેટ ફ્રેમ નું નામ", -DlgLnkPopWinName : "પૉપ-અપ વિન્ડો નું નામ", -DlgLnkPopWinFeat : "પૉપ-અપ વિન્ડો ફીચરસૅ", -DlgLnkPopResize : "સાઇઝ બદલી સકાય છે", -DlgLnkPopLocation : "લોકેશન બાર", -DlgLnkPopMenu : "મેન્યૂ બાર", -DlgLnkPopScroll : "સ્ક્રોલ બાર", -DlgLnkPopStatus : "સ્ટૅટસ બાર", -DlgLnkPopToolbar : "ટૂલ બાર", -DlgLnkPopFullScrn : "ફુલ સ્ક્રીન (IE)", -DlgLnkPopDependent : "ડિપેન્ડન્ટ (Netscape)", -DlgLnkPopWidth : "પહોળાઈ", -DlgLnkPopHeight : "ઊંચાઈ", -DlgLnkPopLeft : "ડાબી બાજુ", -DlgLnkPopTop : "જમણી બાજુ", - -DlnLnkMsgNoUrl : "લિંક URL ટાઇપ કરો", -DlnLnkMsgNoEMail : "ઈ-મેલ સરનામું ટાઇપ કરો", -DlnLnkMsgNoAnchor : "ઍંકર પસંદ કરો", -DlnLnkMsgInvPopName : "પૉપ-અપ વિન્ડો નું નામ ઍલ્ફબેટથી શરૂ કરવો અને તેમાં સ્પેઇસ ન હોવી જોઈએ", - -// Color Dialog -DlgColorTitle : "રંગ પસંદ કરો", -DlgColorBtnClear : "સાફ કરો", -DlgColorHighlight : "હાઈલાઇટ", -DlgColorSelected : "સિલેક્ટેડ/પસંદ કરવું", - -// Smiley Dialog -DlgSmileyTitle : "સ્માઇલી પસંદ કરો", - -// Special Character Dialog -DlgSpecialCharTitle : "સ્પેશિઅલ વિશિષ્ટ અક્ષર પસંદ કરો", - -// Table Dialog -DlgTableTitle : "ટેબલ, કોઠાનું મથાળું", -DlgTableRows : "પંક્તિના ખાના", -DlgTableColumns : "કૉલમ/ઊભી કટાર", -DlgTableBorder : "કોઠાની બાજુ(બોર્ડર) સાઇઝ", -DlgTableAlign : "અલાઇનમન્ટ/ગોઠવાયેલું ", -DlgTableAlignNotSet : "<સેટ નથી>", -DlgTableAlignLeft : "ડાબી બાજુ", -DlgTableAlignCenter : "મધ્ય સેન્ટર", -DlgTableAlignRight : "જમણી બાજુ", -DlgTableWidth : "પહોળાઈ", -DlgTableWidthPx : "પિકસલ", -DlgTableWidthPc : "પ્રતિશત", -DlgTableHeight : "ઊંચાઈ", -DlgTableCellSpace : "સેલ અંતર", -DlgTableCellPad : "સેલ પૅડિંગ", -DlgTableCaption : "મથાળું/કૅપ્શન ", -DlgTableSummary : "ટૂંકો એહેવાલ", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING - -// Table Cell Dialog -DlgCellTitle : "પંક્તિના ખાનાના ગુણ", -DlgCellWidth : "પહોળાઈ", -DlgCellWidthPx : "પિકસલ", -DlgCellWidthPc : "પ્રતિશત", -DlgCellHeight : "ઊંચાઈ", -DlgCellWordWrap : "વર્ડ રૅપ", -DlgCellWordWrapNotSet : "<સેટ નથી>", -DlgCellWordWrapYes : "હા", -DlgCellWordWrapNo : "ના", -DlgCellHorAlign : "સમસ્તરીય ગોઠવવું", -DlgCellHorAlignNotSet : "<સેટ નથી>", -DlgCellHorAlignLeft : "ડાબી બાજુ", -DlgCellHorAlignCenter : "મધ્ય સેન્ટર", -DlgCellHorAlignRight: "જમણી બાજુ", -DlgCellVerAlign : "લંબરૂપ ગોઠવવું", -DlgCellVerAlignNotSet : "<સેટ નથી>", -DlgCellVerAlignTop : "ઉપર", -DlgCellVerAlignMiddle : "મધ્ય સેન્ટર", -DlgCellVerAlignBottom : "નીચે", -DlgCellVerAlignBaseline : "મૂળ રેખા", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING -DlgCellRowSpan : "પંક્તિ સ્પાન", -DlgCellCollSpan : "કૉલમ/ઊભી કટાર સ્પાન", -DlgCellBackColor : "બૅકગ્રાઉન્ડ રંગ", -DlgCellBorderColor : "બોર્ડરનો રંગ", -DlgCellBtnSelect : "પસંદ કરો...", - -// Find and Replace Dialog -DlgFindAndReplaceTitle : "શોધવું અને બદલવું", - -// Find Dialog -DlgFindTitle : "શોધવું", -DlgFindFindBtn : "શોધવું", -DlgFindNotFoundMsg : "તમે શોધેલી ટેક્સ્ટ નથી મળી", - -// Replace Dialog -DlgReplaceTitle : "બદલવું", -DlgReplaceFindLbl : "આ શોધો", -DlgReplaceReplaceLbl : "આનાથી બદલો", -DlgReplaceCaseChk : "કેસ સરખા રાખો", -DlgReplaceReplaceBtn : "બદલવું", -DlgReplaceReplAllBtn : "બઘા બદલી ", -DlgReplaceWordChk : "બઘા શબ્દ સરખા રાખો", - -// Paste Operations / Dialog -PasteErrorCut : "તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસ કટ કરવાની પરવાનગી નથી આપતી. (Ctrl+X) નો ઉપયોગ કરો.", -PasteErrorCopy : "તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસ કોપી કરવાની પરવાનગી નથી આપતી. (Ctrl+C) का प्रयोग करें।", - -PasteAsText : "પેસ્ટ (ટેક્સ્ટ)", -PasteFromWord : "પેસ્ટ (વર્ડ થી)", - -DlgPasteMsg2 : "Ctrl+V નો પ્રયોગ કરી પેસ્ટ કરો", -DlgPasteSec : "તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસના કારણે,એડિટર તમારા કિલ્પબોર્ડ ડેટા ને કોપી નથી કરી શકતો. તમારે આ વિન્ડોમાં ફરીથી પેસ્ટ કરવું પડશે.", -DlgPasteIgnoreFont : "ફૉન્ટફેસ વ્યાખ્યાની અવગણના", -DlgPasteRemoveStyles : "સ્ટાઇલ વ્યાખ્યા કાઢી નાખવી", - -// Color Picker -ColorAutomatic : "સ્વચાલિત", -ColorMoreColors : "ઔર રંગ...", - -// Document Properties -DocProps : "ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ", - -// Anchor Dialog -DlgAnchorTitle : "ઍંકર ગુણ/પ્રૉપર્ટિઝ", -DlgAnchorName : "ઍંકરનું નામ", -DlgAnchorErrorName : "ઍંકરનું નામ ટાઈપ કરો", - -// Speller Pages Dialog -DlgSpellNotInDic : "શબ્દકોશમાં નથી", -DlgSpellChangeTo : "આનાથી બદલવું", -DlgSpellBtnIgnore : "ઇગ્નોર/અવગણના કરવી", -DlgSpellBtnIgnoreAll : "બધાની ઇગ્નોર/અવગણના કરવી", -DlgSpellBtnReplace : "બદલવું", -DlgSpellBtnReplaceAll : "બધા બદલી કરો", -DlgSpellBtnUndo : "અન્ડૂ", -DlgSpellNoSuggestions : "- કઇ સજેશન નથી -", -DlgSpellProgress : "શબ્દની જોડણી/સ્પેલ ચેક ચાલુ છે...", -DlgSpellNoMispell : "શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: ખોટી જોડણી મળી નથી", -DlgSpellNoChanges : "શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એકપણ શબ્દ બદલયો નથી", -DlgSpellOneChange : "શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એક શબ્દ બદલયો છે", -DlgSpellManyChanges : "શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: %1 શબ્દ બદલયા છે", - -IeSpellDownload : "સ્પેલ-ચેકર ઇન્સ્ટોલ નથી. શું તમે ડાઉનલોડ કરવા માંગો છો?", - -// Button Dialog -DlgButtonText : "ટેક્સ્ટ (વૅલ્યૂ)", -DlgButtonType : "પ્રકાર", -DlgButtonTypeBtn : "બટન", -DlgButtonTypeSbm : "સબ્મિટ", -DlgButtonTypeRst : "રિસેટ", - -// Checkbox and Radio Button Dialogs -DlgCheckboxName : "નામ", -DlgCheckboxValue : "વૅલ્યૂ", -DlgCheckboxSelected : "સિલેક્ટેડ", - -// Form Dialog -DlgFormName : "નામ", -DlgFormAction : "ક્રિયા", -DlgFormMethod : "પદ્ધતિ", - -// Select Field Dialog -DlgSelectName : "નામ", -DlgSelectValue : "વૅલ્યૂ", -DlgSelectSize : "સાઇઝ", -DlgSelectLines : "લીટીઓ", -DlgSelectChkMulti : "એકથી વધારે પસંદ કરી શકો", -DlgSelectOpAvail : "ઉપલબ્ધ વિકલ્પ", -DlgSelectOpText : "ટેક્સ્ટ", -DlgSelectOpValue : "વૅલ્યૂ", -DlgSelectBtnAdd : "ઉમેરવું", -DlgSelectBtnModify : "બદલવું", -DlgSelectBtnUp : "ઉપર", -DlgSelectBtnDown : "નીચે", -DlgSelectBtnSetValue : "પસંદ કરલી વૅલ્યૂ સેટ કરો", -DlgSelectBtnDelete : "રદ કરવું", - -// Textarea Dialog -DlgTextareaName : "નામ", -DlgTextareaCols : "કૉલમ/ઊભી કટાર", -DlgTextareaRows : "પંક્તિઓ", - -// Text Field Dialog -DlgTextName : "નામ", -DlgTextValue : "વૅલ્યૂ", -DlgTextCharWidth : "કેરેક્ટરની પહોળાઈ", -DlgTextMaxChars : "અધિકતમ કેરેક્ટર", -DlgTextType : "ટાઇપ", -DlgTextTypeText : "ટેક્સ્ટ", -DlgTextTypePass : "પાસવર્ડ", - -// Hidden Field Dialog -DlgHiddenName : "નામ", -DlgHiddenValue : "વૅલ્યૂ", - -// Bulleted List Dialog -BulletedListProp : "બુલેટ સૂચિ ગુણ", -NumberedListProp : "સંખ્યાંક્તિ સૂચિ ગુણ", -DlgLstStart : "શરૂઆતથી", -DlgLstType : "પ્રકાર", -DlgLstTypeCircle : "વર્તુળ", -DlgLstTypeDisc : "ડિસ્ક", -DlgLstTypeSquare : "ચોરસ", -DlgLstTypeNumbers : "સંખ્યા (1, 2, 3)", -DlgLstTypeLCase : "નાના અક્ષર (a, b, c)", -DlgLstTypeUCase : "મોટા અક્ષર (A, B, C)", -DlgLstTypeSRoman : "નાના રોમન આંક (i, ii, iii)", -DlgLstTypeLRoman : "મોટા રોમન આંક (I, II, III)", - -// Document Properties Dialog -DlgDocGeneralTab : "સાધારણ", -DlgDocBackTab : "બૅકગ્રાઉન્ડ", -DlgDocColorsTab : "રંગ અને માર્જિન/કિનાર", -DlgDocMetaTab : "મેટાડૅટા", - -DlgDocPageTitle : "પેજ મથાળું/ટાઇટલ", -DlgDocLangDir : "ભાષા લેખવાની પદ્ધતિ", -DlgDocLangDirLTR : "ડાબે થી જમણે (LTR)", -DlgDocLangDirRTL : "જમણે થી ડાબે (RTL)", -DlgDocLangCode : "ભાષા કોડ", -DlgDocCharSet : "કેરેક્ટર સેટ એન્કોડિંગ", -DlgDocCharSetCE : "મધ્ય યુરોપિઅન (Central European)", -DlgDocCharSetCT : "ચાઇનીઝ (Chinese Traditional Big5)", -DlgDocCharSetCR : "સિરીલિક (Cyrillic)", -DlgDocCharSetGR : "ગ્રીક (Greek)", -DlgDocCharSetJP : "જાપાનિઝ (Japanese)", -DlgDocCharSetKR : "કોરીયન (Korean)", -DlgDocCharSetTR : "ટર્કિ (Turkish)", -DlgDocCharSetUN : "યૂનિકોડ (UTF-8)", -DlgDocCharSetWE : "પશ્ચિમ યુરોપિઅન (Western European)", -DlgDocCharSetOther : "અન્ય કેરેક્ટર સેટ એન્કોડિંગ", - -DlgDocDocType : "ડૉક્યુમન્ટ પ્રકાર શીર્ષક", -DlgDocDocTypeOther : "અન્ય ડૉક્યુમન્ટ પ્રકાર શીર્ષક", -DlgDocIncXHTML : "XHTML સૂચના સમાવિષ્ટ કરવી", -DlgDocBgColor : "બૅકગ્રાઉન્ડ રંગ", -DlgDocBgImage : "બૅકગ્રાઉન્ડ ચિત્ર URL", -DlgDocBgNoScroll : "સ્ક્રોલ ન થાય તેવું બૅકગ્રાઉન્ડ", -DlgDocCText : "ટેક્સ્ટ", -DlgDocCLink : "લિંક", -DlgDocCVisited : "વિઝિટેડ લિંક", -DlgDocCActive : "સક્રિય લિંક", -DlgDocMargins : "પેજ માર્જિન", -DlgDocMaTop : "ઉપર", -DlgDocMaLeft : "ડાબી", -DlgDocMaRight : "જમણી", -DlgDocMaBottom : "નીચે", -DlgDocMeIndex : "ડૉક્યુમન્ટ ઇન્ડેક્સ સંકેતશબ્દ (અલ્પવિરામ (,) થી અલગ કરો)", -DlgDocMeDescr : "ડૉક્યુમન્ટ વર્ણન", -DlgDocMeAuthor : "લેખક", -DlgDocMeCopy : "કૉપિરાઇટ", -DlgDocPreview : "પૂર્વદર્શન", - -// Templates Dialog -Templates : "ટેમ્પ્લેટ", -DlgTemplatesTitle : "કન્ટેન્ટ ટેમ્પ્લેટ", -DlgTemplatesSelMsg : "એડિટરમાં ઓપન કરવા ટેમ્પ્લેટ પસંદ કરો (વર્તમાન કન્ટેન્ટ સેવ નહીં થાય):", -DlgTemplatesLoading : "ટેમ્પ્લેટ સૂચિ લોડ થાય છે. રાહ જુઓ...", -DlgTemplatesNoTpl : "(કોઈ ટેમ્પ્લેટ ડિફાઇન નથી)", -DlgTemplatesReplace : "મૂળ શબ્દને બદલો", - -// About Dialog -DlgAboutAboutTab : "FCKEditor ના વિષે", -DlgAboutBrowserInfoTab : "બ્રાઉઝર ના વિષે", -DlgAboutLicenseTab : "લાઇસન્સ", -DlgAboutVersion : "વર્ઝન", -DlgAboutInfo : "વધારે માહિતી માટે:", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; diff --git a/httemplate/elements/fckeditor/editor/lang/he.js b/httemplate/elements/fckeditor/editor/lang/he.js index 4cbbf9550..ef2b9792b 100644 --- a/httemplate/elements/fckeditor/editor/lang/he.js +++ b/httemplate/elements/fckeditor/editor/lang/he.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "הסרת העיצוב", InsertLinkLbl : "קישור", InsertLink : "הוספת/עריכת קישור", RemoveLink : "הסרת הקישור", -VisitLink : "פתח קישור", Anchor : "הוספת/עריכת נקודת עיגון", -AnchorDelete : "הסר נקודת עיגון", InsertImageLbl : "תמונה", InsertImage : "הוספת/עריכת תמונה", InsertFlashLbl : "פלאש", @@ -72,10 +70,6 @@ RightJustify : "יישור לימין", BlockJustify : "יישור לשוליים", DecreaseIndent : "הקטנת אינדנטציה", IncreaseIndent : "הגדלת אינדנטציה", -Blockquote : "בלוק ציטוט", -CreateDiv : "צור מיכל(תג)DIV", -EditDiv : "ערוך מיכל (תג)DIV", -DeleteDiv : "הסר מיכל(תג) DIV", Undo : "ביטול צעד אחרון", Redo : "חזרה על צעד אחרון", NumberedListLbl : "רשימה ממוספרת", @@ -109,27 +103,20 @@ SelectionField : "שדה בחירה", ImageButton : "כפתור תמונה", FitWindow : "הגדל את גודל העורך", -ShowBlocks : "הצג בלוקים", // Context Menu EditLink : "עריכת קישור", CellCM : "תא", RowCM : "שורה", ColumnCM : "עמודה", -InsertRowAfter : "הוסף שורה אחרי", -InsertRowBefore : "הוסף שורה לפני", +InsertRow : "הוספת שורה", DeleteRows : "מחיקת שורות", -InsertColumnAfter : "הוסף עמודה אחרי", -InsertColumnBefore : "הוסף עמודה לפני", +InsertColumn : "הוספת עמודה", DeleteColumns : "מחיקת עמודות", -InsertCellAfter : "הוסף תא אחרי", -InsertCellBefore : "הוסף תא אחרי", +InsertCell : "הוספת תא", DeleteCells : "מחיקת תאים", MergeCells : "מיזוג תאים", -MergeRight : "מזג ימינה", -MergeDown : "מזג למטה", -HorizontalSplitCell : "פצל תא אופקית", -VerticalSplitCell : "פצל תא אנכית", +SplitCell : "פיצול תאים", TableDelete : "מחק טבלה", CellProperties : "תכונות התא", TableProperties : "תכונות הטבלה", @@ -147,7 +134,7 @@ SelectionFieldProp : "מאפייני שדה בחירה", TextareaProp : "מאפיני איזור טקסט", FormProp : "מאפיני טופס", -FontFormats : "נורמלי;קוד;כתובת;כותרת;כותרת 2;כותרת 3;כותרת 4;כותרת 5;כותרת 6", +FontFormats : "נורמלי;קוד;כתובת;כותרת;כותרת 2;כותרת 3;כותרת 4;כותרת 5;כותרת 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "מעבד XHTML, נא להמתין...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "ערכת סרגל הכלים \"%1\" לא קיימת", NoActiveX : "הגדרות אבטחה של הדפדפן עלולות לגביל את אפשרויות העריכה.יש לאפשר את האופציה \"הרץ פקדים פעילים ותוספות\". תוכל לחוות טעויות וחיווים של אפשרויות שחסרים.", BrowseServerBlocked : "לא ניתן לגשת לדפדפן משאבים.אנא וודא שחוסם חלונות הקופצים לא פעיל.", DialogBlocked : "לא היה ניתן לפתוח חלון דיאלוג. אנא וודא שחוסם חלונות קופצים לא פעיל.", -VisitLinkBlocked : "לא ניתן לפתוח חלון חדש.נא לוודא שחוסמי החלונות הקופצים לא פעילים.", // Dialogs DlgBtnOK : "אישור", @@ -171,7 +157,7 @@ DlgBtnBrowseServer : "סייר השרת", DlgAdvancedTag : "אפשרויות מתקדמות", DlgOpOther : "<אחר>", DlgInfoTab : "מידע", -DlgAlertUrl : "אנא הזן URL", +DlgAlertUrl : "אנה הזן URL", // General Dialogs Labels DlgGenNotSet : "<לא נקבע>", @@ -243,7 +229,7 @@ DlgLnkURL : "כתובת (URL)", DlgLnkAnchorSel : "בחירת עוגן", DlgLnkAnchorByName : "עפ''י שם העוגן", DlgLnkAnchorById : "עפ''י זיהוי (Id) הרכיב", -DlgLnkNoAnchors : "(אין עוגנים זמינים בדף)", +DlgLnkNoAnchors : "(אין עוגנים זמינים בדף)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "כתובת הדוא''ל", DlgLnkEMailSubject : "נושא ההודעה", DlgLnkEMailBody : "גוף ההודעה", @@ -308,11 +294,6 @@ DlgTableCellSpace : "מרווח תא", DlgTableCellPad : "ריפוד תא", DlgTableCaption : "כיתוב", DlgTableSummary : "סיכום", -DlgTableHeaders : "כותרות", -DlgTableHeadersNone : "אין", -DlgTableHeadersColumn : "עמודה ראשונה", -DlgTableHeadersRow : "שורה ראשונה", -DlgTableHeadersBoth : "שניהם", // Table Cell Dialog DlgCellTitle : "תכונות תא", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "למעלה", DlgCellVerAlignMiddle : "לאמצע", DlgCellVerAlignBottom : "לתחתית", DlgCellVerAlignBaseline : "קו תחתית", -DlgCellType : "סוג תא", -DlgCellTypeData : "סוג", -DlgCellTypeHeader : "כותרת", DlgCellRowSpan : "טווח שורות", DlgCellCollSpan : "טווח עמודות", DlgCellBackColor : "צבע רקע", DlgCellBorderColor : "צבע מסגרת", DlgCellBtnSelect : "בחירה...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "חפש והחלף", - // Find Dialog DlgFindTitle : "חיפוש", DlgFindFindBtn : "חיפוש", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "אנא הדבק בתוך הקופסה באמצעות (C DlgPasteSec : "עקב הגדרות אבטחה בדפדפן, לא ניתן לגשת אל לוח הגזירים (clipboard) בצורה ישירה.אנא בצע הדבק שוב בחלון זה.", DlgPasteIgnoreFont : "התעלם מהגדרות סוג פונט", DlgPasteRemoveStyles : "הסר הגדרות סגנון", +DlgPasteCleanBox : "ניקוי קופסה", // Color Picker ColorAutomatic : "אוטומטי", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "אודות", DlgAboutBrowserInfoTab : "גירסת דפדפן", DlgAboutLicenseTab : "רשיון", DlgAboutVersion : "גירסא", -DlgAboutInfo : "מידע נוסף ניתן למצוא כאן:", - -// Div Dialog -DlgDivGeneralTab : "כללי", -DlgDivAdvancedTab : "מתקדם", -DlgDivStyle : "סגנון", -DlgDivInlineStyle : "סגנון בתוך השורה", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "מידע נוסף ניתן למצוא כאן:" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/hi.js b/httemplate/elements/fckeditor/editor/lang/hi.js index b4e88fcff..fdc5e39e5 100644 --- a/httemplate/elements/fckeditor/editor/lang/hi.js +++ b/httemplate/elements/fckeditor/editor/lang/hi.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "फ़ॉर्मैट हटायें", InsertLinkLbl : "लिंक", InsertLink : "लिंक इन्सर्ट/संपादन", RemoveLink : "लिंक हटायें", -VisitLink : "लिंक खोलें", Anchor : "ऐंकर इन्सर्ट/संपादन", -AnchorDelete : "ऐंकर हटायें", InsertImageLbl : "तस्वीर", InsertImage : "तस्वीर इन्सर्ट/संपादन", InsertFlashLbl : "फ़्लैश", @@ -72,10 +70,6 @@ RightJustify : "दायीं तरफ", BlockJustify : "ब्लॉक जस्टीफ़ाई", DecreaseIndent : "इन्डॅन्ट कम करें", IncreaseIndent : "इन्डॅन्ट बढ़ायें", -Blockquote : "ब्लॉक-कोट", -CreateDiv : "डिव (Div) कन्टेनर बनायें", -EditDiv : "डिव (Div) कन्टेनर बदलें", -DeleteDiv : "डिव कन्टेनर हटायें", Undo : "अन्डू", Redo : "रीडू", NumberedListLbl : "अंकीय सूची", @@ -109,29 +103,22 @@ SelectionField : "चुनाव फ़ील्ड", ImageButton : "तस्वीर बटन", FitWindow : "एडिटर साइज़ को चरम सीमा तक बढ़ायें", -ShowBlocks : "ब्लॉक दिखायें", // Context Menu EditLink : "लिंक संपादन", CellCM : "खाना", RowCM : "पंक्ति", ColumnCM : "कालम", -InsertRowAfter : "बाद में पंक्ति डालें", -InsertRowBefore : "पहले पंक्ति डालें", +InsertRow : "पंक्ति इन्सर्ट करें", DeleteRows : "पंक्तियाँ डिलीट करें", -InsertColumnAfter : "बाद में कालम डालें", -InsertColumnBefore : "पहले कालम डालें", -DeleteColumns : "कालम डिलीट करें", -InsertCellAfter : "बाद में सैल डालें", -InsertCellBefore : "पहले सैल डालें", -DeleteCells : "सैल डिलीट करें", -MergeCells : "सैल मिलायें", -MergeRight : "बाँया विलय", -MergeDown : "नीचे विलय करें", -HorizontalSplitCell : "सैल को क्षैतिज स्थिति में विभाजित करें", -VerticalSplitCell : "सैल को लम्बाकार में विभाजित करें", +InsertColumn : "कॉलम इन्सर्ट करें", +DeleteColumns : "कॉलम डिलीट करें", +InsertCell : "सॅल इन्सर्ट करें", +DeleteCells : "सॅल डिलीट करें", +MergeCells : "सॅल मिलायें", +SplitCell : "सॅल अलग करें", TableDelete : "टेबल डिलीट करें", -CellProperties : "सैल प्रॉपर्टीज़", +CellProperties : "सॅल प्रॉपर्टीज़", TableProperties : "टेबल प्रॉपर्टीज़", ImageProperties : "तस्वीर प्रॉपर्टीज़", FlashProperties : "फ़्लैश प्रॉपर्टीज़", @@ -147,7 +134,7 @@ SelectionFieldProp : "चुनाव फ़ील्ड प्रॉपर्ट TextareaProp : "टेक्स्त एरिया प्रॉपर्टीज़", FormProp : "फ़ॉर्म प्रॉपर्टीज़", -FontFormats : "साधारण;फ़ॉर्मैटॅड;पता;शीर्षक 1;शीर्षक 2;शीर्षक 3;शीर्षक 4;शीर्षक 5;शीर्षक 6;शीर्षक (DIV)", +FontFormats : "साधारण;फ़ॉर्मैटॅड;पता;शीर्षक 1;शीर्षक 2;शीर्षक 3;शीर्षक 4;शीर्षक 5;शीर्षक 6;शीर्षक (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML प्रोसॅस हो रहा है। ज़रा ठहरें...", @@ -159,9 +146,8 @@ UnknownCommand : "अनजान कमान्ड \"%1\"", NotImplemented : "कमान्ड इम्प्लीमॅन्ट नहीं किया गया है", UnknownToolbarSet : "टूलबार सॅट \"%1\" उपलब्ध नहीं है", NoActiveX : "आपके ब्राउज़र् की सुरक्शा सेटिंग्स् एडिटर की कुछ् फ़ीचरों को सीमित कर् सकती हैं। क्रिपया \"Run ActiveX controls and plug-ins\" विकल्प को एनेबल करें. आपको एरर्स् और गायब फ़ीचर्स् का अनुभव हो सकता है।", -BrowseServerBlocked : "रिसोर्सेज़ ब्राउज़र् नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को निष्क्रिय करें।", -DialogBlocked : "डायलग विन्डो नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को निष्क्रिय करें।", -VisitLinkBlocked : "नया विन्डो नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को निष्क्रिय करें।", +BrowseServerBlocked : "रिसोर्सेज़ ब्राउज़र् नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को डिसेबल करें।", +DialogBlocked : "डायलग विन्डो नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को डिसेबल करें।", // Dialogs DlgBtnOK : "ठीक है", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "ऐंकर चुनें", DlgLnkAnchorByName : "ऐंकर नाम से", DlgLnkAnchorById : "ऍलीमॅन्ट Id से", -DlgLnkNoAnchors : "(डॉक्यूमॅन्ट में ऐंकर्स की संख्या)", +DlgLnkNoAnchors : "<डॉक्यूमॅन्ट में ऐंकर्स की संख्या>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "ई-मेल पता", DlgLnkEMailSubject : "संदेश विषय", DlgLnkEMailBody : "संदेश", @@ -293,7 +279,7 @@ DlgSpecialCharTitle : "विशेष करॅक्टर चुनें", // Table Dialog DlgTableTitle : "टेबल प्रॉपर्टीज़", DlgTableRows : "पंक्तियाँ", -DlgTableColumns : "कालम", +DlgTableColumns : "कॉलम", DlgTableBorder : "बॉर्डर साइज़", DlgTableAlign : "ऍलाइन्मॅन्ट", DlgTableAlignNotSet : "<सॅट नहीं>", @@ -301,23 +287,18 @@ DlgTableAlignLeft : "दायें", DlgTableAlignCenter : "बीच में", DlgTableAlignRight : "बायें", DlgTableWidth : "चौड़ाई", -DlgTableWidthPx : "पिक्सैल", +DlgTableWidthPx : "पिक्सॅल", DlgTableWidthPc : "प्रतिशत", DlgTableHeight : "ऊँचाई", -DlgTableCellSpace : "सैल अंतर", -DlgTableCellPad : "सैल पैडिंग", +DlgTableCellSpace : "सॅल अंतर", +DlgTableCellPad : "सॅल पैडिंग", DlgTableCaption : "शीर्षक", DlgTableSummary : "सारांश", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog -DlgCellTitle : "सैल प्रॉपर्टीज़", +DlgCellTitle : "सॅल प्रॉपर्टीज़", DlgCellWidth : "चौड़ाई", -DlgCellWidthPx : "पिक्सैल", +DlgCellWidthPx : "पिक्सॅल", DlgCellWidthPc : "प्रतिशत", DlgCellHeight : "ऊँचाई", DlgCellWordWrap : "वर्ड रैप", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "ऊपर", DlgCellVerAlignMiddle : "मध्य", DlgCellVerAlignBottom : "नीचे", DlgCellVerAlignBaseline : "मूलरेखा", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "पंक्ति स्पैन", -DlgCellCollSpan : "कालम स्पैन", +DlgCellCollSpan : "कॉलम स्पैन", DlgCellBackColor : "बैक्ग्राउन्ड रंग", DlgCellBorderColor : "बॉर्डर का रंग", DlgCellBtnSelect : "चुनें...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "खोजें और बदलें", - // Find Dialog DlgFindTitle : "खोजें", DlgFindFindBtn : "खोजें", @@ -369,12 +344,13 @@ PasteAsText : "पेस्ट (सादा टॅक्स्ट)", PasteFromWord : "पेस्ट (वर्ड से)", DlgPasteMsg2 : "Ctrl+V का प्रयोग करके पेस्ट करें और ठीक है करें.", -DlgPasteSec : "आपके ब्राउज़र की सुरक्षा आपके ब्राउज़र की सुरKश सैटिंग के कारण, एडिटर आपके क्लिपबोर्ड डेटा को नहीं पा सकता है. आपको उसे इस विन्डो में दोबारा पेस्ट करना होगा.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "फ़ॉन्ट परिभाषा निकालें", DlgPasteRemoveStyles : "स्टाइल परिभाषा निकालें", +DlgPasteCleanBox : "बॉक्स साफ़ करें", // Color Picker -ColorAutomatic : "स्वचालित", +ColorAutomatic : "ऑटोमैटिक", ColorMoreColors : "और रंग...", // Document Properties @@ -416,7 +392,7 @@ DlgCheckboxSelected : "सॅलॅक्टॅड", // Form Dialog DlgFormName : "नाम", -DlgFormAction : "क्रिया", +DlgFormAction : "ऍक्शन", DlgFormMethod : "तरीका", // Select Field Dialog @@ -437,7 +413,7 @@ DlgSelectBtnDelete : "डिलीट", // Textarea Dialog DlgTextareaName : "नाम", -DlgTextareaCols : "कालम", +DlgTextareaCols : "कॉलम", DlgTextareaRows : "पंक्तियां", // Text Field Dialog @@ -524,16 +500,5 @@ DlgAboutAboutTab : "FCKEditor के बारे में", DlgAboutBrowserInfoTab : "ब्राउज़र के बारे में", DlgAboutLicenseTab : "लाइसैन्स", DlgAboutVersion : "वर्ज़न", -DlgAboutInfo : "अधिक जानकारी के लिये यहाँ जायें:", - -// Div Dialog -DlgDivGeneralTab : "सामान्य", -DlgDivAdvancedTab : "एड्वान्स्ड", -DlgDivStyle : "स्टाइल", -DlgDivInlineStyle : "इनलाइन स्टाइल", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "अधिक जानकारी के लिये यहाँ जायें:" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/hr.js b/httemplate/elements/fckeditor/editor/lang/hr.js index 3a920964f..f088b1063 100644 --- a/httemplate/elements/fckeditor/editor/lang/hr.js +++ b/httemplate/elements/fckeditor/editor/lang/hr.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Ukloni formatiranje", InsertLinkLbl : "Link", InsertLink : "Ubaci/promijeni link", RemoveLink : "Ukloni link", -VisitLink : "Otvori link", Anchor : "Ubaci/promijeni sidro", -AnchorDelete : "Ukloni sidro", InsertImageLbl : "Slika", InsertImage : "Ubaci/promijeni sliku", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Desno poravnanje", BlockJustify : "Blok poravnanje", DecreaseIndent : "Pomakni ulijevo", IncreaseIndent : "Pomakni udesno", -Blockquote : "Blockquote", -CreateDiv : "Napravi Div kontejner", -EditDiv : "Uredi Div kontejner", -DeleteDiv : "Ukloni Div kontejner", Undo : "Poništi", Redo : "Ponovi", NumberedListLbl : "Brojčana lista", @@ -109,27 +103,20 @@ SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Povećaj veličinu editora", -ShowBlocks : "Prikaži blokove", // Context Menu EditLink : "Promijeni link", CellCM : "Ćelija", RowCM : "Red", ColumnCM : "Kolona", -InsertRowAfter : "Ubaci red poslije", -InsertRowBefore : "Ubaci red prije", +InsertRow : "Ubaci red", DeleteRows : "Izbriši redove", -InsertColumnAfter : "Ubaci kolonu poslije", -InsertColumnBefore : "Ubaci kolonu prije", +InsertColumn : "Ubaci kolonu", DeleteColumns : "Izbriši kolone", -InsertCellAfter : "Ubaci ćeliju poslije", -InsertCellBefore : "Ubaci ćeliju prije", +InsertCell : "Ubaci ćelije", DeleteCells : "Izbriši ćelije", MergeCells : "Spoji ćelije", -MergeRight : "Spoji desno", -MergeDown : "Spoji dolje", -HorizontalSplitCell : "Podijeli ćeliju vodoravno", -VerticalSplitCell : "Podijeli ćeliju okomito", +SplitCell : "Razdvoji ćelije", TableDelete : "Izbriši tablicu", CellProperties : "Svojstva ćelije", TableProperties : "Svojstva tablice", @@ -147,7 +134,7 @@ SelectionFieldProp : "Selection svojstva", TextareaProp : "Textarea svojstva", FormProp : "Form svojstva", -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Obrađujem XHTML. Molimo pričekajte...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Traka s alatima \"%1\" ne postoji", NoActiveX : "Vaše postavke pretraživača mogle bi ograničiti neke od mogućnosti editora. Morate uključiti opciju \"Run ActiveX controls and plug-ins\" u postavkama. Ukoliko to ne učinite, moguće su razliite greške tijekom rada.", BrowseServerBlocked : "Pretraivač nije moguće otvoriti. Provjerite da li je uključeno blokiranje pop-up prozora.", DialogBlocked : "Nije moguće otvoriti novi prozor. Provjerite da li je uključeno blokiranje pop-up prozora.", -VisitLinkBlocked : "Nije moguće otvoriti novi prozor. Provjerite da li je uključeno blokiranje pop-up prozora.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Odaberi sidro", DlgLnkAnchorByName : "Po nazivu sidra", DlgLnkAnchorById : "Po Id elementa", -DlgLnkNoAnchors : "(Nema dostupnih sidra)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail adresa", DlgLnkEMailSubject : "Naslov", DlgLnkEMailBody : "Sadržaj poruke", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Prostornost ćelija", DlgTableCellPad : "Razmak ćelija", DlgTableCaption : "Naslov", DlgTableSummary : "Sažetak", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Svojstva ćelije", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Gornje", DlgCellVerAlignMiddle : "Srednišnje", DlgCellVerAlignBottom : "Donje", DlgCellVerAlignBaseline : "Bazno", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Spajanje redova", DlgCellCollSpan : "Spajanje kolona", DlgCellBackColor : "Boja pozadine", DlgCellBorderColor : "Boja okvira", DlgCellBtnSelect : "Odaberi...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Pronađi i zamijeni", - // Find Dialog DlgFindTitle : "Pronađi", DlgFindFindBtn : "Pronađi", @@ -369,9 +344,10 @@ PasteAsText : "Zalijepi kao čisti tekst", PasteFromWord : "Zalijepi iz Worda", DlgPasteMsg2 : "Molimo zaljepite unutar doljnjeg okvira koristeći tipkovnicu (Ctrl+V) i kliknite OK.", -DlgPasteSec : "Zbog sigurnosnih postavki Vašeg pretraživača, editor nema direktan pristup Vašem međuspremniku. Potrebno je ponovno zalijepiti tekst u ovaj prozor.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Zanemari definiciju vrste fonta", DlgPasteRemoveStyles : "Ukloni definicije stilova", +DlgPasteCleanBox : "Očisti okvir", // Color Picker ColorAutomatic : "Automatski", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "O FCKEditoru", DlgAboutBrowserInfoTab : "Podaci o pretraživaču", DlgAboutLicenseTab : "Licenca", DlgAboutVersion : "inačica", -DlgAboutInfo : "Za više informacija posjetite", - -// Div Dialog -DlgDivGeneralTab : "Općenito", -DlgDivAdvancedTab : "Napredno", -DlgDivStyle : "Stil", -DlgDivInlineStyle : "Stil u redu", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Za više informacija posjetite" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/hu.js b/httemplate/elements/fckeditor/editor/lang/hu.js index 0a72cac90..73b912c82 100644 --- a/httemplate/elements/fckeditor/editor/lang/hu.js +++ b/httemplate/elements/fckeditor/editor/lang/hu.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Formázás eltávolítása", InsertLinkLbl : "Hivatkozás", InsertLink : "Hivatkozás beillesztése/módosítása", RemoveLink : "Hivatkozás törlése", -VisitLink : "Open Link", //MISSING Anchor : "Horgony beillesztése/szerkesztése", -AnchorDelete : "Horgony eltávolítása", InsertImageLbl : "Kép", InsertImage : "Kép beillesztése/módosítása", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Jobbra", BlockJustify : "Sorkizárt", DecreaseIndent : "Behúzás csökkentése", IncreaseIndent : "Behúzás növelése", -Blockquote : "Idézet blokk", -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Visszavonás", Redo : "Ismétlés", NumberedListLbl : "Számozás", @@ -109,27 +103,20 @@ SelectionField : "Legördülő lista", ImageButton : "Képgomb", FitWindow : "Maximalizálás", -ShowBlocks : "Blokkok megjelenítése", // Context Menu EditLink : "Hivatkozás módosítása", CellCM : "Cella", RowCM : "Sor", ColumnCM : "Oszlop", -InsertRowAfter : "Sor beillesztése az aktuális sor mögé", -InsertRowBefore : "Sor beillesztése az aktuális sor elé", +InsertRow : "Sor beszúrása", DeleteRows : "Sorok törlése", -InsertColumnAfter : "Oszlop beillesztése az aktuális oszlop mögé", -InsertColumnBefore : "Oszlop beillesztése az aktuális oszlop elé", +InsertColumn : "Oszlop beszúrása", DeleteColumns : "Oszlopok törlése", -InsertCellAfter : "Cella beillesztése az aktuális cella mögé", -InsertCellBefore : "Cella beillesztése az aktuális cella elé", +InsertCell : "Cella beszúrása", DeleteCells : "Cellák törlése", MergeCells : "Cellák egyesítése", -MergeRight : "Cellák egyesítése jobbra", -MergeDown : "Cellák egyesítése lefelé", -HorizontalSplitCell : "Cellák szétválasztása vízszintesen", -VerticalSplitCell : "Cellák szétválasztása függőlegesen", +SplitCell : "Cella szétválasztása", TableDelete : "Táblázat törlése", CellProperties : "Cella tulajdonságai", TableProperties : "Táblázat tulajdonságai", @@ -147,7 +134,7 @@ SelectionFieldProp : "Legördülő lista tulajdonságai", TextareaProp : "Szövegterület tulajdonságai", FormProp : "Űrlap tulajdonságai", -FontFormats : "Normál;Formázott;Címsor;Fejléc 1;Fejléc 2;Fejléc 3;Fejléc 4;Fejléc 5;Fejléc 6;Bekezdés (DIV)", +FontFormats : "Normál;Formázott;Címsor;Fejléc 1;Fejléc 2;Fejléc 3;Fejléc 4;Fejléc 5;Fejléc 6;Bekezdés (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML feldolgozása. Kérem várjon...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Az eszközkészlet \"%1\" nem létezik", NoActiveX : "A böngésző biztonsági beállításai korlátozzák a szerkesztő lehetőségeit. Engedélyezni kell ezt az opciót: \"Run ActiveX controls and plug-ins\". Ettől függetlenül előfordulhatnak hibaüzenetek ill. bizonyos funkciók hiányozhatnak.", BrowseServerBlocked : "Nem lehet megnyitni a fájlböngészőt. Bizonyosodjon meg róla, hogy a felbukkanó ablakok engedélyezve vannak.", DialogBlocked : "Nem lehet megnyitni a párbeszédablakot. Bizonyosodjon meg róla, hogy a felbukkanó ablakok engedélyezve vannak.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "Rendben", @@ -243,7 +229,7 @@ DlgLnkURL : "Webcím", DlgLnkAnchorSel : "Horgony választása", DlgLnkAnchorByName : "Horgony név szerint", DlgLnkAnchorById : "Azonosító szerint", -DlgLnkNoAnchors : "(Nincs horgony a dokumentumban)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail cím", DlgLnkEMailSubject : "Üzenet tárgya", DlgLnkEMailBody : "Üzenet", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Cella térköz", DlgTableCellPad : "Cella belső margó", DlgTableCaption : "Felirat", DlgTableSummary : "Leírás", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Cella tulajdonságai", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Tetejére", DlgCellVerAlignMiddle : "Középre", DlgCellVerAlignBottom : "Aljára", DlgCellVerAlignBaseline : "Egyvonalba", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Sorok egyesítése", DlgCellCollSpan : "Oszlopok egyesítése", DlgCellBackColor : "Háttérszín", DlgCellBorderColor : "Szegélyszín", DlgCellBtnSelect : "Kiválasztás...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Keresés és csere", - // Find Dialog DlgFindTitle : "Keresés", DlgFindFindBtn : "Keresés", @@ -369,9 +344,10 @@ PasteAsText : "Beillesztés formázatlan szövegként", PasteFromWord : "Beillesztés Word-ből", DlgPasteMsg2 : "Másolja be az alábbi mezőbe a Ctrl+V billentyűk lenyomásával, majd nyomjon Rendben-t.", -DlgPasteSec : "A böngésző biztonsági beállításai miatt a szerkesztő nem képes hozzáférni a vágólap adataihoz. Illeszd be újra ebben az ablakban.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Betű formázások megszüntetése", DlgPasteRemoveStyles : "Stílusok eltávolítása", +DlgPasteCleanBox : "Törlés", // Color Picker ColorAutomatic : "Automatikus", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Névjegy", DlgAboutBrowserInfoTab : "Böngésző információ", DlgAboutLicenseTab : "Licensz", DlgAboutVersion : "verzió", -DlgAboutInfo : "További információkért látogasson el ide:", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "További információkért látogasson el ide:" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/is.js b/httemplate/elements/fckeditor/editor/lang/is.js deleted file mode 100644 index 3238f7d86..000000000 --- a/httemplate/elements/fckeditor/editor/lang/is.js +++ /dev/null @@ -1,539 +0,0 @@ -/* - * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben - * - * == BEGIN LICENSE == - * - * Licensed under the terms of any of the following licenses at your - * choice: - * - * - GNU General Public License Version 2 or later (the "GPL") - * http://www.gnu.org/licenses/gpl.html - * - * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") - * http://www.gnu.org/licenses/lgpl.html - * - * - Mozilla Public License Version 1.1 or later (the "MPL") - * http://www.mozilla.org/MPL/MPL-1.1.html - * - * == END LICENSE == - * - * Icelandic language file. - */ - -var FCKLang = -{ -// Language direction : "ltr" (left to right) or "rtl" (right to left). -Dir : "ltr", - -ToolbarCollapse : "Fela verkstiku", -ToolbarExpand : "Sýna verkstiku", - -// Toolbar Items and Context Menu -Save : "Vista", -NewPage : "Ný síða", -Preview : "Forskoða", -Cut : "Klippa", -Copy : "Afrita", -Paste : "Líma", -PasteText : "Líma ósniðinn texta", -PasteWord : "Líma úr Word", -Print : "Prenta", -SelectAll : "Velja allt", -RemoveFormat : "Fjarlægja snið", -InsertLinkLbl : "Stikla", -InsertLink : "Stofna/breyta stiklu", -RemoveLink : "Fjarlægja stiklu", -VisitLink : "Opna stiklusíðu", -Anchor : "Stofna/breyta kaflamerki", -AnchorDelete : "Eyða kaflamerki", -InsertImageLbl : "Setja inn mynd", -InsertImage : "Setja inn/breyta mynd", -InsertFlashLbl : "Flash", -InsertFlash : "Setja inn/breyta Flash", -InsertTableLbl : "Tafla", -InsertTable : "Setja inn/breyta töflu", -InsertLineLbl : "Lína", -InsertLine : "Lóðrétt lína", -InsertSpecialCharLbl: "Merki", -InsertSpecialChar : "Setja inn merki", -InsertSmileyLbl : "Svipur", -InsertSmiley : "Setja upp svip", -About : "Um FCKeditor", -Bold : "Feitletrað", -Italic : "Skáletrað", -Underline : "Undirstrikað", -StrikeThrough : "Yfirstrikað", -Subscript : "Niðurskrifað", -Superscript : "Uppskrifað", -LeftJustify : "Vinstrijöfnun", -CenterJustify : "Miðja texta", -RightJustify : "Hægrijöfnun", -BlockJustify : "Jafna báðum megin", -DecreaseIndent : "Auka inndrátt", -IncreaseIndent : "Minnka inndrátt", -Blockquote : "Inndráttur", -CreateDiv : "Búa til DIV-hýsil", -EditDiv : "Breyta DIV-hýsli", -DeleteDiv : "Eyða DIV-hýsli", -Undo : "Afturkalla", -Redo : "Hætta við afturköllun", -NumberedListLbl : "Númeraður listi", -NumberedList : "Setja inn/fella númeraðan lista", -BulletedListLbl : "Punktalisti", -BulletedList : "Setja inn/fella punktalista", -ShowTableBorders : "Sýna töflugrind", -ShowDetails : "Sýna smáatriði", -Style : "Stílflokkur", -FontFormat : "Stílsnið", -Font : "Leturgerð ", -FontSize : "Leturstærð ", -TextColor : "Litur texta", -BGColor : "Bakgrunnslitur", -Source : "Kóði", -Find : "Leita", -Replace : "Skipta út", -SpellCheck : "Villuleit", -UniversalKeyboard : "Hnattrænt lyklaborð", -PageBreakLbl : "Síðuskil", -PageBreak : "Setja inn síðuskil", - -Form : "Setja inn innsláttarform", -Checkbox : "Setja inn hökunarreit", -RadioButton : "Setja inn valhnapp", -TextField : "Setja inn textareit", -Textarea : "Setja inn textasvæði", -HiddenField : "Setja inn falið svæði", -Button : "Setja inn hnapp", -SelectionField : "Setja inn lista", -ImageButton : "Setja inn myndahnapp", - -FitWindow : "Skoða ritil í fullri stærð", -ShowBlocks : "Sýna blokkir", - -// Context Menu -EditLink : "Breyta stiklu", -CellCM : "Reitur", -RowCM : "Röð", -ColumnCM : "Dálkur", -InsertRowAfter : "Skjóta inn röð fyrir neðan", -InsertRowBefore : "Skjóta inn röð fyrir ofan", -DeleteRows : "Eyða röð", -InsertColumnAfter : "Skjóta inn dálki hægra megin", -InsertColumnBefore : "Skjóta inn dálki vinstra megin", -DeleteColumns : "Fella dálk", -InsertCellAfter : "Skjóta inn reiti fyrir framan", -InsertCellBefore : "Skjóta inn reiti fyrir aftan", -DeleteCells : "Fella reit", -MergeCells : "Sameina reiti", -MergeRight : "Sameina til hægri", -MergeDown : "Sameina niður á við", -HorizontalSplitCell : "Kljúfa reit lárétt", -VerticalSplitCell : "Kljúfa reit lóðrétt", -TableDelete : "Fella töflu", -CellProperties : "Eigindi reits", -TableProperties : "Eigindi töflu", -ImageProperties : "Eigindi myndar", -FlashProperties : "Eigindi Flash", - -AnchorProp : "Eigindi kaflamerkis", -ButtonProp : "Eigindi hnapps", -CheckboxProp : "Eigindi markreits", -HiddenFieldProp : "Eigindi falins svæðis", -RadioButtonProp : "Eigindi valhnapps", -ImageButtonProp : "Eigindi myndahnapps", -TextFieldProp : "Eigindi textareits", -SelectionFieldProp : "Eigindi lista", -TextareaProp : "Eigindi textasvæðis", -FormProp : "Eigindi innsláttarforms", - -FontFormats : "Venjulegt letur;Forsniðið;Vistfang;Fyrirsögn 1;Fyrirsögn 2;Fyrirsögn 3;Fyrirsögn 4;Fyrirsögn 5;Fyrirsögn 6;Venjulegt (DIV)", - -// Alerts and Messages -ProcessingXHTML : "Meðhöndla XHTML...", -Done : "Tilbúið", -PasteWordConfirm : "Textinn sem þú ætlar að líma virðist koma úr Word. Viltu hreinsa óþarfar Word-skipanir úr honum?", -NotCompatiblePaste : "Þessi aðgerð er bundin við Internet Explorer 5.5 og nýrri. Viltu líma textann án þess að hreinsa hann?", -UnknownToolbarItem : "Óþekktur hlutur í verkstiku \"%1\"!", -UnknownCommand : "Óþekkt skipanaheiti \"%1\"!", -NotImplemented : "Skipun ekki virkjuð!", -UnknownToolbarSet : "Verkstikan \"%1\" ekki til!", -NoActiveX : "Öryggisstillingarnar í vafranum þínum leyfa ekki alla möguleika ritilsins.
Láttu vafrann leyfa Active-X og viðbætur til að komast hjá villum og takmörkunum.", -BrowseServerBlocked : "Ritillinn getur ekki opnað nauðsynlega hjálparglugga!
Láttu hann leyfa þessari síðu að opna sprettiglugga.", -DialogBlocked : "Ekki var hægt að opna skipanaglugga!
Nauðsynlegt er að leyfa síðunni að opna sprettiglugga.", -VisitLinkBlocked : "Ekki var hægt að opna nýjan glugga. Gangtu úr skugga um að engir sprettigluggabanar séu virkir.", - -// Dialogs -DlgBtnOK : "Í lagi", -DlgBtnCancel : "Hætta við", -DlgBtnClose : "Loka", -DlgBtnBrowseServer : "Fletta í skjalasafni", -DlgAdvancedTag : "Tæknilegt", -DlgOpOther : "", -DlgInfoTab : "Upplýsingar", -DlgAlertUrl : "Sláðu inn slóð", - -// General Dialogs Labels -DlgGenNotSet : "", -DlgGenId : "Auðkenni", -DlgGenLangDir : "Lesstefna", -DlgGenLangDirLtr : "Frá vinstri til hægri (LTR)", -DlgGenLangDirRtl : "Frá hægri til vinstri (RTL)", -DlgGenLangCode : "Tungumálakóði", -DlgGenAccessKey : "Skammvalshnappur", -DlgGenName : "Nafn", -DlgGenTabIndex : "Raðnúmer innsláttarreits", -DlgGenLongDescr : "Nánari lýsing", -DlgGenClass : "Stílsniðsflokkur", -DlgGenTitle : "Titill", -DlgGenContType : "Tegund innihalds", -DlgGenLinkCharset : "Táknróf", -DlgGenStyle : "Stíll", - -// Image Dialog -DlgImgTitle : "Eigindi myndar", -DlgImgInfoTab : "Almennt", -DlgImgBtnUpload : "Hlaða upp", -DlgImgURL : "Vefslóð", -DlgImgUpload : "Hlaða upp", -DlgImgAlt : "Baklægur texti", -DlgImgWidth : "Breidd", -DlgImgHeight : "Hæð", -DlgImgLockRatio : "Festa stærðarhlutfall", -DlgBtnResetSize : "Reikna stærð", -DlgImgBorder : "Rammi", -DlgImgHSpace : "Vinstri bil", -DlgImgVSpace : "Hægri bil", -DlgImgAlign : "Jöfnun", -DlgImgAlignLeft : "Vinstri", -DlgImgAlignAbsBottom: "Abs neðst", -DlgImgAlignAbsMiddle: "Abs miðjuð", -DlgImgAlignBaseline : "Grunnlína", -DlgImgAlignBottom : "Neðst", -DlgImgAlignMiddle : "Miðjuð", -DlgImgAlignRight : "Hægri", -DlgImgAlignTextTop : "Efri brún texta", -DlgImgAlignTop : "Efst", -DlgImgPreview : "Sýna dæmi", -DlgImgAlertUrl : "Sláðu inn slóðina að myndinni", -DlgImgLinkTab : "Stikla", - -// Flash Dialog -DlgFlashTitle : "Eigindi Flash", -DlgFlashChkPlay : "Sjálfvirk spilun", -DlgFlashChkLoop : "Endurtekning", -DlgFlashChkMenu : "Sýna Flash-valmynd", -DlgFlashScale : "Skali", -DlgFlashScaleAll : "Sýna allt", -DlgFlashScaleNoBorder : "Án ramma", -DlgFlashScaleFit : "Fella skala að stærð", - -// Link Dialog -DlgLnkWindowTitle : "Stikla", -DlgLnkInfoTab : "Almennt", -DlgLnkTargetTab : "Mark", - -DlgLnkType : "Stikluflokkur", -DlgLnkTypeURL : "Vefslóð", -DlgLnkTypeAnchor : "Bókamerki á þessari síðu", -DlgLnkTypeEMail : "Netfang", -DlgLnkProto : "Samskiptastaðall", -DlgLnkProtoOther : "", -DlgLnkURL : "Vefslóð", -DlgLnkAnchorSel : "Veldu akkeri", -DlgLnkAnchorByName : "Eftir akkerisnafni", -DlgLnkAnchorById : "Eftir auðkenni einingar", -DlgLnkNoAnchors : "", -DlgLnkEMail : "Netfang", -DlgLnkEMailSubject : "Efni", -DlgLnkEMailBody : "Meginmál", -DlgLnkUpload : "Senda upp", -DlgLnkBtnUpload : "Senda upp", - -DlgLnkTarget : "Mark", -DlgLnkTargetFrame : "", -DlgLnkTargetPopup : "", -DlgLnkTargetBlank : "Nýr gluggi (_blank)", -DlgLnkTargetParent : "Yfirsettur rammi (_parent)", -DlgLnkTargetSelf : "Sami gluggi (_self)", -DlgLnkTargetTop : "Allur glugginn (_top)", -DlgLnkTargetFrameName : "Nafn markglugga", -DlgLnkPopWinName : "Nafn sprettiglugga", -DlgLnkPopWinFeat : "Eigindi sprettiglugga", -DlgLnkPopResize : "Skölun", -DlgLnkPopLocation : "Fanglína", -DlgLnkPopMenu : "Vallína", -DlgLnkPopScroll : "Skrunstikur", -DlgLnkPopStatus : "Stöðustika", -DlgLnkPopToolbar : "Verkfærastika", -DlgLnkPopFullScrn : "Heilskjár (IE)", -DlgLnkPopDependent : "Háð venslum (Netscape)", -DlgLnkPopWidth : "Breidd", -DlgLnkPopHeight : "Hæð", -DlgLnkPopLeft : "Fjarlægð frá vinstri", -DlgLnkPopTop : "Fjarlægð frá efri brún", - -DlnLnkMsgNoUrl : "Sláðu inn veffang stiklunnar!", -DlnLnkMsgNoEMail : "Sláðu inn netfang!", -DlnLnkMsgNoAnchor : "Veldu fyrst eitthvert bókamerki!", -DlnLnkMsgInvPopName : "Sprettisíðan verður að byrja á bókstaf (a-z) og má ekki innihalda stafabil", - -// Color Dialog -DlgColorTitle : "Velja lit", -DlgColorBtnClear : "Núllstilla", -DlgColorHighlight : "Litmerkja", -DlgColorSelected : "Valið", - -// Smiley Dialog -DlgSmileyTitle : "Velja svip", - -// Special Character Dialog -DlgSpecialCharTitle : "Velja tákn", - -// Table Dialog -DlgTableTitle : "Eigindi töflu", -DlgTableRows : "Raðir", -DlgTableColumns : "Dálkar", -DlgTableBorder : "Breidd ramma", -DlgTableAlign : "Jöfnun", -DlgTableAlignNotSet : "", -DlgTableAlignLeft : "Vinstrijafnað", -DlgTableAlignCenter : "Miðjað", -DlgTableAlignRight : "Hægrijafnað", -DlgTableWidth : "Breidd", -DlgTableWidthPx : "myndeindir", -DlgTableWidthPc : "prósent", -DlgTableHeight : "Hæð", -DlgTableCellSpace : "Bil milli reita", -DlgTableCellPad : "Reitaspássía", -DlgTableCaption : "Titill", -DlgTableSummary : "Áfram", -DlgTableHeaders : "Fyrirsagnir", -DlgTableHeadersNone : "Engar", -DlgTableHeadersColumn : "Fyrsti dálkur", -DlgTableHeadersRow : "Fyrsta röð", -DlgTableHeadersBoth : "Hvort tveggja", - -// Table Cell Dialog -DlgCellTitle : "Eigindi reits", -DlgCellWidth : "Breidd", -DlgCellWidthPx : "myndeindir", -DlgCellWidthPc : "prósent", -DlgCellHeight : "Hæð", -DlgCellWordWrap : "Línuskipting", -DlgCellWordWrapNotSet : "", -DlgCellWordWrapYes : "Já", -DlgCellWordWrapNo : "Nei", -DlgCellHorAlign : "Lárétt jöfnun", -DlgCellHorAlignNotSet : "", -DlgCellHorAlignLeft : "Vinstrijafnað", -DlgCellHorAlignCenter : "Miðjað", -DlgCellHorAlignRight: "Hægrijafnað", -DlgCellVerAlign : "Lóðrétt jöfnun", -DlgCellVerAlignNotSet : "", -DlgCellVerAlignTop : "Efst", -DlgCellVerAlignMiddle : "Miðjað", -DlgCellVerAlignBottom : "Neðst", -DlgCellVerAlignBaseline : "Grunnlína", -DlgCellType : "Tegund reits", -DlgCellTypeData : "Gögn", -DlgCellTypeHeader : "Fyrirsögn", -DlgCellRowSpan : "Hæð í röðum talið", -DlgCellCollSpan : "Breidd í dálkum talið", -DlgCellBackColor : "Bakgrunnslitur", -DlgCellBorderColor : "Rammalitur", -DlgCellBtnSelect : "Veldu...", - -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Finna og skipta", - -// Find Dialog -DlgFindTitle : "Finna", -DlgFindFindBtn : "Finna", -DlgFindNotFoundMsg : "Leitartexti fannst ekki!", - -// Replace Dialog -DlgReplaceTitle : "Skipta út", -DlgReplaceFindLbl : "Leita að:", -DlgReplaceReplaceLbl : "Skipta út fyrir:", -DlgReplaceCaseChk : "Gera greinarmun á¡ há¡- og lágstöfum", -DlgReplaceReplaceBtn : "Skipta út", -DlgReplaceReplAllBtn : "Skipta út allsstaðar", -DlgReplaceWordChk : "Aðeins heil orð", - -// Paste Operations / Dialog -PasteErrorCut : "Öryggisstillingar vafrans þíns leyfa ekki klippingu texta með músaraðgerð. Notaðu lyklaborðið í klippa (Ctrl+X).", -PasteErrorCopy : "Öryggisstillingar vafrans þíns leyfa ekki afritun texta með músaraðgerð. Notaðu lyklaborðið í afrita (Ctrl+C).", - -PasteAsText : "Líma sem ósniðinn texta", -PasteFromWord : "Líma úr Word", - -DlgPasteMsg2 : "Límdu í svæðið hér að neðan og (Ctrl+V) og smelltu á OK.", -DlgPasteSec : "Vegna öryggisstillinga í vafranum þínum fær ritillinn ekki beinan aðgang að klippuborðinu. Þú verður að líma innihaldið aftur inn í þennan glugga.", -DlgPasteIgnoreFont : "Hunsa leturskilgreiningar", -DlgPasteRemoveStyles : "Hunsa letureigindi", - -// Color Picker -ColorAutomatic : "Sjálfval", -ColorMoreColors : "Fleiri liti...", - -// Document Properties -DocProps : "Eigindi skjals", - -// Anchor Dialog -DlgAnchorTitle : "Eigindi bókamerkis", -DlgAnchorName : "Nafn bókamerkis", -DlgAnchorErrorName : "Sláðu inn nafn bókamerkis!", - -// Speller Pages Dialog -DlgSpellNotInDic : "Ekki í orðabókinni", -DlgSpellChangeTo : "Tillaga", -DlgSpellBtnIgnore : "Hunsa", -DlgSpellBtnIgnoreAll : "Hunsa allt", -DlgSpellBtnReplace : "Skipta", -DlgSpellBtnReplaceAll : "Skipta öllu", -DlgSpellBtnUndo : "Til baka", -DlgSpellNoSuggestions : "- engar tillögur -", -DlgSpellProgress : "Villuleit í gangi...", -DlgSpellNoMispell : "Villuleit lokið: Engin villa fannst", -DlgSpellNoChanges : "Villuleit lokið: Engu orði breytt", -DlgSpellOneChange : "Villuleit lokið: Einu orði breytt", -DlgSpellManyChanges : "Villuleit lokið: %1 orðum breytt", - -IeSpellDownload : "Villuleit ekki sett upp.
Viltu setja hana upp?", - -// Button Dialog -DlgButtonText : "Texti", -DlgButtonType : "Gerð", -DlgButtonTypeBtn : "Hnappur", -DlgButtonTypeSbm : "Staðfesta", -DlgButtonTypeRst : "Hreinsa", - -// Checkbox and Radio Button Dialogs -DlgCheckboxName : "Nafn", -DlgCheckboxValue : "Gildi", -DlgCheckboxSelected : "Valið", - -// Form Dialog -DlgFormName : "Nafn", -DlgFormAction : "Aðgerð", -DlgFormMethod : "Aðferð", - -// Select Field Dialog -DlgSelectName : "Nafn", -DlgSelectValue : "Gildi", -DlgSelectSize : "Stærð", -DlgSelectLines : "línur", -DlgSelectChkMulti : "Leyfa fleiri kosti", -DlgSelectOpAvail : "Kostir", -DlgSelectOpText : "Texti", -DlgSelectOpValue : "Gildi", -DlgSelectBtnAdd : "Bæta við", -DlgSelectBtnModify : "Breyta", -DlgSelectBtnUp : "Upp", -DlgSelectBtnDown : "Niður", -DlgSelectBtnSetValue : "Merkja sem valið", -DlgSelectBtnDelete : "Eyða", - -// Textarea Dialog -DlgTextareaName : "Nafn", -DlgTextareaCols : "Dálkar", -DlgTextareaRows : "Línur", - -// Text Field Dialog -DlgTextName : "Nafn", -DlgTextValue : "Gildi", -DlgTextCharWidth : "Breidd (leturtákn)", -DlgTextMaxChars : "Hámarksfjöldi leturtákna", -DlgTextType : "Gerð", -DlgTextTypeText : "Texti", -DlgTextTypePass : "Lykilorð", - -// Hidden Field Dialog -DlgHiddenName : "Nafn", -DlgHiddenValue : "Gildi", - -// Bulleted List Dialog -BulletedListProp : "Eigindi depillista", -NumberedListProp : "Eigindi tölusetts lista", -DlgLstStart : "Byrja", -DlgLstType : "Gerð", -DlgLstTypeCircle : "Hringur", -DlgLstTypeDisc : "Fylltur hringur", -DlgLstTypeSquare : "Ferningur", -DlgLstTypeNumbers : "Tölusett (1, 2, 3)", -DlgLstTypeLCase : "Lágstafir (a, b, c)", -DlgLstTypeUCase : "Hástafir (A, B, C)", -DlgLstTypeSRoman : "Rómverkar lágstafatölur (i, ii, iii)", -DlgLstTypeLRoman : "Rómverkar hástafatölur (I, II, III)", - -// Document Properties Dialog -DlgDocGeneralTab : "Almennt", -DlgDocBackTab : "Bakgrunnur", -DlgDocColorsTab : "Litir og rammar", -DlgDocMetaTab : "Lýsigögn", - -DlgDocPageTitle : "Titill síðu", -DlgDocLangDir : "Tungumál", -DlgDocLangDirLTR : "Vinstri til hægri (LTR)", -DlgDocLangDirRTL : "Hægri til vinstri (RTL)", -DlgDocLangCode : "Tungumálakóði", -DlgDocCharSet : "Letursett", -DlgDocCharSetCE : "Mið-evrópskt", -DlgDocCharSetCT : "Kínverskt, hefðbundið (Big5)", -DlgDocCharSetCR : "Kýrilskt", -DlgDocCharSetGR : "Grískt", -DlgDocCharSetJP : "Japanskt", -DlgDocCharSetKR : "Kóreskt", -DlgDocCharSetTR : "Tyrkneskt", -DlgDocCharSetUN : "Unicode (UTF-8)", -DlgDocCharSetWE : "Vestur-evrópst", -DlgDocCharSetOther : "Annað letursett", - -DlgDocDocType : "Flokkur skjalategunda", -DlgDocDocTypeOther : "Annar flokkur skjalategunda", -DlgDocIncXHTML : "Fella inn XHTML lýsingu", -DlgDocBgColor : "Bakgrunnslitur", -DlgDocBgImage : "Slóð bakgrunnsmyndar", -DlgDocBgNoScroll : "Læstur bakgrunnur", -DlgDocCText : "Texti", -DlgDocCLink : "Stikla", -DlgDocCVisited : "Heimsótt stikla", -DlgDocCActive : "Virk stikla", -DlgDocMargins : "Hliðarspássía", -DlgDocMaTop : "Efst", -DlgDocMaLeft : "Vinstri", -DlgDocMaRight : "Hægri", -DlgDocMaBottom : "Neðst", -DlgDocMeIndex : "Lykilorð efnisorðaskrár (aðgreind með kommum)", -DlgDocMeDescr : "Lýsing skjals", -DlgDocMeAuthor : "Höfundur", -DlgDocMeCopy : "Höfundarréttur", -DlgDocPreview : "Sýna", - -// Templates Dialog -Templates : "Sniðmát", -DlgTemplatesTitle : "Innihaldssniðmát", -DlgTemplatesSelMsg : "Veldu sniðmát til að opna í ritlinum.
(Núverandi innihald víkur fyrir því!):", -DlgTemplatesLoading : "Sæki lista yfir sniðmát...", -DlgTemplatesNoTpl : "(Ekkert sniðmát er skilgreint!)", -DlgTemplatesReplace : "Skipta út raunverulegu innihaldi", - -// About Dialog -DlgAboutAboutTab : "Um", -DlgAboutBrowserInfoTab : "Almennt", -DlgAboutLicenseTab : "Leyfi", -DlgAboutVersion : "útgáfa", -DlgAboutInfo : "Nánari upplýsinar, sjá:", - -// Div Dialog -DlgDivGeneralTab : "Almennt", -DlgDivAdvancedTab : "Sérhæft", -DlgDivStyle : "Stíll", -DlgDivInlineStyle : "Línulægur stíll", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; diff --git a/httemplate/elements/fckeditor/editor/lang/it.js b/httemplate/elements/fckeditor/editor/lang/it.js index 51b0d8510..a3dee1ba5 100644 --- a/httemplate/elements/fckeditor/editor/lang/it.js +++ b/httemplate/elements/fckeditor/editor/lang/it.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Elimina formattazione", InsertLinkLbl : "Collegamento", InsertLink : "Inserisci/Modifica collegamento", RemoveLink : "Elimina collegamento", -VisitLink : "Open Link", //MISSING Anchor : "Inserisci/Modifica Ancora", -AnchorDelete : "Rimuovi Ancora", InsertImageLbl : "Immagine", InsertImage : "Inserisci/Modifica immagine", InsertFlashLbl : "Oggetto Flash", @@ -72,10 +70,6 @@ RightJustify : "Allinea a destra", BlockJustify : "Giustifica", DecreaseIndent : "Riduci rientro", IncreaseIndent : "Aumenta rientro", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Annulla", Redo : "Ripristina", NumberedListLbl : "Elenco numerato", @@ -109,27 +103,20 @@ SelectionField : "Menu di selezione", ImageButton : "Bottone immagine", FitWindow : "Massimizza l'area dell'editor", -ShowBlocks : "Visualizza Blocchi", // Context Menu EditLink : "Modifica collegamento", CellCM : "Cella", RowCM : "Riga", ColumnCM : "Colonna", -InsertRowAfter : "Inserisci Riga Dopo", -InsertRowBefore : "Inserisci Riga Prima", +InsertRow : "Inserisci riga", DeleteRows : "Elimina righe", -InsertColumnAfter : "Inserisci Colonna Dopo", -InsertColumnBefore : "Inserisci Colonna Prima", +InsertColumn : "Inserisci colonna", DeleteColumns : "Elimina colonne", -InsertCellAfter : "Inserisci Cella Dopo", -InsertCellBefore : "Inserisci Cella Prima", +InsertCell : "Inserisci cella", DeleteCells : "Elimina celle", MergeCells : "Unisce celle", -MergeRight : "Unisci a Destra", -MergeDown : "Unisci in Basso", -HorizontalSplitCell : "Dividi Cella Orizzontalmente", -VerticalSplitCell : "Dividi Cella Verticalmente", +SplitCell : "Dividi celle", TableDelete : "Cancella Tabella", CellProperties : "Proprietà cella", TableProperties : "Proprietà tabella", @@ -147,7 +134,7 @@ SelectionFieldProp : "Proprietà menu di selezione", TextareaProp : "Proprietà area di testo", FormProp : "Proprietà modulo", -FontFormats : "Normale;Formattato;Indirizzo;Titolo 1;Titolo 2;Titolo 3;Titolo 4;Titolo 5;Titolo 6;Paragrafo (DIV)", +FontFormats : "Normale;Formattato;Indirizzo;Titolo 1;Titolo 2;Titolo 3;Titolo 4;Titolo 5;Titolo 6;Paragrafo (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Elaborazione XHTML in corso. Attendere prego...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "La barra di strumenti \"%1\" non esiste", NoActiveX : "Le impostazioni di sicurezza del tuo browser potrebbero limitare alcune funzionalità dell'editor. Devi abilitare l'opzione \"Esegui controlli e plug-in ActiveX\". Potresti avere errori e notare funzionalità mancanti.", BrowseServerBlocked : "Non è possibile aprire la finestra di espolorazione risorse. Verifica che tutti i blocca popup siano bloccati.", DialogBlocked : "Non è possibile aprire la finestra di dialogo. Verifica che tutti i blocca popup siano bloccati.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Scegli Ancora", DlgLnkAnchorByName : "Per Nome", DlgLnkAnchorById : "Per id elemento", -DlgLnkNoAnchors : "(Nessuna ancora disponibile nel documento)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Indirizzo E-Mail", DlgLnkEMailSubject : "Oggetto del messaggio", DlgLnkEMailBody : "Corpo del messaggio", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Spaziatura celle", DlgTableCellPad : "Padding celle", DlgTableCaption : "Intestazione", DlgTableSummary : "Indice", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Proprietà cella", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "In Alto", DlgCellVerAlignMiddle : "Centrato", DlgCellVerAlignBottom : "In Basso", DlgCellVerAlignBaseline : "Linea base", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Righe occupate", DlgCellCollSpan : "Colonne occupate", DlgCellBackColor : "Colore sfondo", DlgCellBorderColor : "Colore bordo", DlgCellBtnSelect : "Scegli...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Cerca e Sostituisci", - // Find Dialog DlgFindTitle : "Trova", DlgFindFindBtn : "Trova", @@ -369,9 +344,10 @@ PasteAsText : "Incolla come testo semplice", PasteFromWord : "Incolla da Word", DlgPasteMsg2 : "Incolla il testo all'interno dell'area sottostante usando la scorciatoia di tastiere (Ctrl+V) e premi OK.", -DlgPasteSec : "A causa delle impostazioni di sicurezza del browser,l'editor non è in grado di accedere direttamente agli appunti. E' pertanto necessario incollarli di nuovo in questa finestra.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignora le definizioni di Font", DlgPasteRemoveStyles : "Rimuovi le definizioni di Stile", +DlgPasteCleanBox : "Svuota area di testo", // Color Picker ColorAutomatic : "Automatico", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Informazioni", DlgAboutBrowserInfoTab : "Informazioni Browser", DlgAboutLicenseTab : "Licenza", DlgAboutVersion : "versione", -DlgAboutInfo : "Per maggiori informazioni visitare", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Per maggiori informazioni visitare" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/ja.js b/httemplate/elements/fckeditor/editor/lang/ja.js index b7dde042b..c567d2187 100644 --- a/httemplate/elements/fckeditor/editor/lang/ja.js +++ b/httemplate/elements/fckeditor/editor/lang/ja.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "フォーマット削除", InsertLinkLbl : "リンク", InsertLink : "リンク挿入/編集", RemoveLink : "リンク削除", -VisitLink : "リンクを開く", Anchor : "アンカー挿入/編集", -AnchorDelete : "アンカー削除", InsertImageLbl : "イメージ", InsertImage : "イメージ挿入/編集", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "右揃え", BlockJustify : "両端揃え", DecreaseIndent : "インデント解除", IncreaseIndent : "インデント", -Blockquote : "ブロック引用", -CreateDiv : "Div 作成", -EditDiv : "Div 編集", -DeleteDiv : "Div 削除", Undo : "元に戻す", Redo : "やり直し", NumberedListLbl : "段落番号", @@ -109,27 +103,20 @@ SelectionField : "選択フィールド", ImageButton : "画像ボタン", FitWindow : "エディタサイズを最大にします", -ShowBlocks : "ブロック表示", // Context Menu EditLink : "リンク編集", CellCM : "セル", RowCM : "行", ColumnCM : "カラム", -InsertRowAfter : "列の後に挿入", -InsertRowBefore : "列の前に挿入", +InsertRow : "行挿入", DeleteRows : "行削除", -InsertColumnAfter : "カラムの後に挿入", -InsertColumnBefore : "カラムの前に挿入", +InsertColumn : "列挿入", DeleteColumns : "列削除", -InsertCellAfter : "セルの後に挿入", -InsertCellBefore : "セルの前に挿入", +InsertCell : "セル挿入", DeleteCells : "セル削除", MergeCells : "セル結合", -MergeRight : "右に結合", -MergeDown : "下に結合", -HorizontalSplitCell : "セルを水平方向分割", -VerticalSplitCell : "セルを垂直方向に分割", +SplitCell : "セル分割", TableDelete : "テーブル削除", CellProperties : "セル プロパティ", TableProperties : "テーブル プロパティ", @@ -147,7 +134,7 @@ SelectionFieldProp : "選択フィールド プロパティ", TextareaProp : "テキストエリア プロパティ", FormProp : "フォーム プロパティ", -FontFormats : "標準;書式付き;アドレス;見出し 1;見出し 2;見出し 3;見出し 4;見出し 5;見出し 6;標準 (DIV)", +FontFormats : "標準;書式付き;アドレス;見出し 1;見出し 2;見出し 3;見出し 4;見出し 5;見出し 6;標準 (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML処理中. しばらくお待ちください...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "ツールバー設定 \"%1\" 存在しません。", NoActiveX : "エラー、警告メッセージなどが発生した場合、ブラウザーのセキュリティ設定によりエディタのいくつかの機能が制限されている可能性があります。セキュリティ設定のオプションで\"ActiveXコントロールとプラグインの実行\"を有効にするにしてください。", BrowseServerBlocked : "サーバーブラウザーを開くことができませんでした。ポップアップ・ブロック機能が無効になっているか確認してください。", DialogBlocked : "ダイアログウィンドウを開くことができませんでした。ポップアップ・ブロック機能が無効になっているか確認してください。", -VisitLinkBlocked : "新しいウィンドウを開くことができませんでした。ポップアップ・ブロック機能が無効になっているか確認してください。", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "アンカーを選択", DlgLnkAnchorByName : "アンカー名", DlgLnkAnchorById : "エレメントID", -DlgLnkNoAnchors : "(ドキュメントにおいて利用可能なアンカーはありません。)", +DlgLnkNoAnchors : "<ドキュメントにおいて利用可能なアンカーはありません。>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail アドレス", DlgLnkEMailSubject : "件名", DlgLnkEMailBody : "本文", @@ -308,11 +294,6 @@ DlgTableCellSpace : "セル内余白", DlgTableCellPad : "セル内間隔", DlgTableCaption : "キャプション", DlgTableSummary : "テーブル目的/構造", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "セル プロパティ", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "上", DlgCellVerAlignMiddle : "中央", DlgCellVerAlignBottom : "下", DlgCellVerAlignBaseline : "ベースライン", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "縦幅(行数)", DlgCellCollSpan : "横幅(列数)", DlgCellBackColor : "背景色", DlgCellBorderColor : "ボーダーカラー", DlgCellBtnSelect : "選択...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "検索して置換", - // Find Dialog DlgFindTitle : "検索", DlgFindFindBtn : "検索", @@ -369,9 +344,10 @@ PasteAsText : "プレーンテキスト貼り付け", PasteFromWord : "ワード文章から貼り付け", DlgPasteMsg2 : "キーボード(Ctrl+V)を使用して、次の入力エリア内で貼って、OKを押してください。", -DlgPasteSec : "ブラウザのセキュリティ設定により、エディタはクリップボード・データに直接アクセスすることができません。このウィンドウは貼り付け操作を行う度に表示されます。", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "FontタグのFace属性を無視します。", DlgPasteRemoveStyles : "スタイル定義を削除します。", +DlgPasteCleanBox : "入力エリアクリア", // Color Picker ColorAutomatic : "自動", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "バージョン情報", DlgAboutBrowserInfoTab : "ブラウザ情報", DlgAboutLicenseTab : "ライセンス", DlgAboutVersion : "バージョン", -DlgAboutInfo : "より詳しい情報はこちらで", - -// Div Dialog -DlgDivGeneralTab : "全般", -DlgDivAdvancedTab : "高度な設定", -DlgDivStyle : "スタイル", -DlgDivInlineStyle : "インラインスタイル", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "より詳しい情報はこちらで" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/km.js b/httemplate/elements/fckeditor/editor/lang/km.js index e0af4d02b..e90291f71 100644 --- a/httemplate/elements/fckeditor/editor/lang/km.js +++ b/httemplate/elements/fckeditor/editor/lang/km.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "លប់ចោល ការរចនា", InsertLinkLbl : "ឈ្នាប់", InsertLink : "បន្ថែម/កែប្រែ ឈ្នាប់", RemoveLink : "លប់ឈ្នាប់", -VisitLink : "Open Link", //MISSING Anchor : "បន្ថែម/កែប្រែ យុថ្កា", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "រូបភាព", InsertImage : "បន្ថែម/កែប្រែ រូបភាព", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "តំរឹមស្តាំ", BlockJustify : "តំរឹមសងខាង", DecreaseIndent : "បន្ថយការចូលបន្ទាត់", IncreaseIndent : "បន្ថែមការចូលបន្ទាត់", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "សារឡើងវិញ", Redo : "ធ្វើឡើងវិញ", NumberedListLbl : "បញ្ជីជាអក្សរ", @@ -109,27 +103,20 @@ SelectionField : "ជួរជ្រើសរើស", ImageButton : "ប៉ូតុនរូបភាព", FitWindow : "Maximize the editor size", //MISSING -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "កែប្រែឈ្នាប់", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "បន្ថែមជួរផ្តេក", DeleteRows : "លប់ជួរផ្តេក", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "បន្ថែមជួរឈរ", DeleteColumns : "លប់ជួរឈរ", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "បន្ថែម សែល", DeleteCells : "លប់សែល", MergeCells : "បញ្ជូលសែល", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "ផ្តាច់សែល", TableDelete : "លប់តារាង", CellProperties : "ការកំណត់សែល", TableProperties : "ការកំណត់តារាង", @@ -147,7 +134,7 @@ SelectionFieldProp : "ការកំណត់ជួរជ្រើសរើស" TextareaProp : "ការកំណត់កន្លែងសរសេរអត្ថបទ", FormProp : "ការកំណត់បែបបទ", -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "កំពុងដំណើរការ XHTML ។ សូមរងចាំ...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "របាឧបរកណ៍ \"%1\" ពុំមាន ។", NoActiveX : "ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ​អាចធ្វើអោយលោកអ្នកមិនអាចប្រើមុខងារខ្លះរបស់កម្មវិធីតាក់តែងអត្ថបទនេះ ។ លោកអ្នកត្រូវកំណត់អោយ \"ActiveX និង​កម្មវិធីជំនួយក្នុង (plug-ins)\" អោយដំណើរការ ។ លោកអ្នកអាចជួបប្រទះនឹង បញ្ហា ព្រមជាមួយនឹងការបាត់បង់មុខងារណាមួយរបស់កម្មវិធីតាក់តែងអត្ថបទនេះ ។", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "វីនដូវមិនអាចបើកបានទេ ។ សូមពិនិត្យចំពោះកម្មវិធីបិទ វីនដូវលោត (popup) ថាតើវាដំណើរការរឺទេ ។", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "យល់ព្រម", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "ជ្រើសរើសយុថ្កា", DlgLnkAnchorByName : "តាមឈ្មោះរបស់យុថ្កា", DlgLnkAnchorById : "តាម Id", -DlgLnkNoAnchors : "(No anchors available in the document)", //MISSING +DlgLnkNoAnchors : "<ពុំមានយុថ្កានៅក្នុងឯកសារនេះទេ>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "អ៊ីមែល", DlgLnkEMailSubject : "ចំណងជើងអត្ថបទ", DlgLnkEMailBody : "អត្ថបទ", @@ -308,11 +294,6 @@ DlgTableCellSpace : "គំលាតសែល", DlgTableCellPad : "គែមសែល", DlgTableCaption : "ចំណងជើង", DlgTableSummary : "សេចក្តីសង្ខេប", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "ការកំណត់ សែល", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "ខាងលើ", DlgCellVerAlignMiddle : "កណ្តាល", DlgCellVerAlignBottom : "ខាងក្រោម", DlgCellVerAlignBaseline : "បន្ទាត់ជាមូលដ្ឋាន", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "បញ្ជូលជួរផ្តេក", DlgCellCollSpan : "បញ្ជូលជួរឈរ", DlgCellBackColor : "ពណ៌ផ្នែកខាងក្រោម", DlgCellBorderColor : "ពណ៌ស៊ុម", DlgCellBtnSelect : "ជ្រើសរើស...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "ស្វែងរក", DlgFindFindBtn : "ស្វែងរក", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "សូមចំលងអត្ថបទទៅដាក់ក្ DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "មិនគិតអំពីប្រភេទពុម្ភអក្សរ", DlgPasteRemoveStyles : "លប់ម៉ូត", +DlgPasteCleanBox : "លប់អត្ថបទចេញពីប្រអប់", // Color Picker ColorAutomatic : "ស្វ័យប្រវត្ត", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "អំពី", DlgAboutBrowserInfoTab : "ព៌តមានកម្មវិធីរុករក", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "ជំនាន់", -DlgAboutInfo : "សំរាប់ព៌តមានផ្សេងទៀត សូមទាក់ទង", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "សំរាប់ព៌តមានផ្សេងទៀត សូមទាក់ទង" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/ko.js b/httemplate/elements/fckeditor/editor/lang/ko.js index 91df044ff..0a2efa6eb 100644 --- a/httemplate/elements/fckeditor/editor/lang/ko.js +++ b/httemplate/elements/fckeditor/editor/lang/ko.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "포맷 지우기", InsertLinkLbl : "링크", InsertLink : "링크 삽입/변경", RemoveLink : "링크 삭제", -VisitLink : "Open Link", //MISSING Anchor : "책갈피 삽입/변경", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "이미지", InsertImage : "이미지 삽입/변경", InsertFlashLbl : "플래쉬", @@ -72,10 +70,6 @@ RightJustify : "오른쪽 정렬", BlockJustify : "양쪽 맞춤", DecreaseIndent : "내어쓰기", IncreaseIndent : "들여쓰기", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "취소", Redo : "재실행", NumberedListLbl : "순서있는 목록", @@ -108,29 +102,22 @@ Button : "버튼", SelectionField : "펼침목록", ImageButton : "이미지버튼", -FitWindow : "에디터 최대화", -ShowBlocks : "Show Blocks", //MISSING +FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "링크 수정", -CellCM : "셀/칸(Cell)", -RowCM : "행(Row)", -ColumnCM : "열(Column)", -InsertRowAfter : "뒤에 행 삽입", -InsertRowBefore : "앞에 행 삽입", +CellCM : "Cell", //MISSING +RowCM : "Row", //MISSING +ColumnCM : "Column", //MISSING +InsertRow : "가로줄 삽입", DeleteRows : "가로줄 삭제", -InsertColumnAfter : "뒤에 열 삽입", -InsertColumnBefore : "앞에 열 삽입", +InsertColumn : "세로줄 삽입", DeleteColumns : "세로줄 삭제", -InsertCellAfter : "뒤에 셀/칸 삽입", -InsertCellBefore : "앞에 셀/칸 삽입", +InsertCell : "셀 삽입", DeleteCells : "셀 삭제", MergeCells : "셀 합치기", -MergeRight : "오른쪽 뭉치기", -MergeDown : "왼쪽 뭉치기", -HorizontalSplitCell : "수평 나누기", -VerticalSplitCell : "수직 나누기", -TableDelete : "표 삭제", +SplitCell : "셀 나누기", +TableDelete : "Delete Table", //MISSING CellProperties : "셀 속성", TableProperties : "표 속성", ImageProperties : "이미지 속성", @@ -147,7 +134,7 @@ SelectionFieldProp : "펼침목록 속성", TextareaProp : "입력영역 속성", FormProp : "폼 속성", -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML 처리중. 잠시만 기다려주십시요.", @@ -158,10 +145,9 @@ UnknownToolbarItem : "알수없는 툴바입니다. : \"%1\"", UnknownCommand : "알수없는 기능입니다. : \"%1\"", NotImplemented : "기능이 실행되지 않았습니다.", UnknownToolbarSet : "툴바 설정이 없습니다. : \"%1\"", -NoActiveX : "브러우저의 보안 설정으로 인해 몇몇 기능의 작동에 장애가 있을 수 있습니다. \"액티브-액스 기능과 플러그 인\" 옵션을 허용하여 주시지 않으면 오류가 발생할 수 있습니다.", -BrowseServerBlocked : "브러우저 요소가 열리지 않습니다. 팝업차단 설정이 꺼져있는지 확인하여 주십시오.", -DialogBlocked : "윈도우 대화창을 열 수 없습니다. 팝업차단 설정이 꺼져있는지 확인하여 주십시오.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "예", @@ -212,7 +198,7 @@ DlgImgAlignBaseline : "기준선", DlgImgAlignBottom : "아래", DlgImgAlignMiddle : "중간", DlgImgAlignRight : "오른쪽", -DlgImgAlignTextTop : "글자상단", +DlgImgAlignTextTop : "글자위(Text Top)", DlgImgAlignTop : "위", DlgImgPreview : "미리보기", DlgImgAlertUrl : "이미지 URL을 입력하십시요", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "책갈피 선택", DlgLnkAnchorByName : "책갈피 이름", DlgLnkAnchorById : "책갈피 ID", -DlgLnkNoAnchors : "(문서에 책갈피가 없습니다.)", +DlgLnkNoAnchors : "<문서에 책갈피가 없습니다.>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "이메일 주소", DlgLnkEMailSubject : "제목", DlgLnkEMailBody : "내용", @@ -276,7 +262,7 @@ DlgLnkPopTop : "윗쪽 위치", DlnLnkMsgNoUrl : "링크 URL을 입력하십시요.", DlnLnkMsgNoEMail : "이메일주소를 입력하십시요.", DlnLnkMsgNoAnchor : "책갈피명을 입력하십시요.", -DlnLnkMsgInvPopName : "팝업창의 타이틀은 공백을 허용하지 않습니다.", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "색상 선택", @@ -307,12 +293,7 @@ DlgTableHeight : "높이", DlgTableCellSpace : "셀 간격", DlgTableCellPad : "셀 여백", DlgTableCaption : "캡션", -DlgTableSummary : "요약", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING +DlgTableSummary : "Summary", //MISSING // Table Cell Dialog DlgCellTitle : "셀 설정", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "위", DlgCellVerAlignMiddle : "중간", DlgCellVerAlignBottom : "아래", DlgCellVerAlignBaseline : "기준선", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "세로 합치기", DlgCellCollSpan : "가로 합치기", DlgCellBackColor : "배경 색상", DlgCellBorderColor : "테두리 색상", DlgCellBtnSelect : "선택", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "찾기 & 바꾸기", - // Find Dialog DlgFindTitle : "찾기", DlgFindFindBtn : "찾기", @@ -369,9 +344,10 @@ PasteAsText : "텍스트로 붙여넣기", PasteFromWord : "MS Word 형식에서 붙여넣기", DlgPasteMsg2 : "키보드의 (Ctrl+V) 를 이용해서 상자안에 붙여넣고 OK 를 누르세요.", -DlgPasteSec : "브러우저 보안 설정으로 인해, 클립보드의 자료를 직접 접근할 수 없습니다. 이 창에 다시 붙여넣기 하십시오.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "폰트 설정 무시", DlgPasteRemoveStyles : "스타일 정의 제거", +DlgPasteCleanBox : "글상자 제거", // Color Picker ColorAutomatic : "기본색상", @@ -517,23 +493,12 @@ DlgTemplatesTitle : "내용 템플릿", DlgTemplatesSelMsg : "에디터에서 사용할 템플릿을 선택하십시요.
(지금까지 작성된 내용은 사라집니다.):", DlgTemplatesLoading : "템플릿 목록을 불러오는중입니다. 잠시만 기다려주십시요.", DlgTemplatesNoTpl : "(템플릿이 없습니다.)", -DlgTemplatesReplace : "현재 내용 바꾸기", +DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "About", DlgAboutBrowserInfoTab : "브라우저 정보", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "버전", -DlgAboutInfo : "더 많은 정보를 보시려면 다음 사이트로 가십시오.", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "For further information go to" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/lt.js b/httemplate/elements/fckeditor/editor/lang/lt.js index 44f5da64e..db994d0b9 100644 --- a/httemplate/elements/fckeditor/editor/lang/lt.js +++ b/httemplate/elements/fckeditor/editor/lang/lt.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Panaikinti formatą", InsertLinkLbl : "Nuoroda", InsertLink : "Įterpti/taisyti nuorodą", RemoveLink : "Panaikinti nuorodą", -VisitLink : "Atidaryti nuorodą", Anchor : "Įterpti/modifikuoti žymę", -AnchorDelete : "Naikinti žymę", InsertImageLbl : "Vaizdas", InsertImage : "Įterpti/taisyti vaizdą", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Lygiuoti dešinę", BlockJustify : "Lygiuoti abi puses", DecreaseIndent : "Sumažinti įtrauką", IncreaseIndent : "Padidinti įtrauką", -Blockquote : "Citata", -CreateDiv : "Sukurti Div elementą", -EditDiv : "Reaguoti Div elementą", -DeleteDiv : "Šalinti Div elementą", Undo : "Atšaukti", Redo : "Atstatyti", NumberedListLbl : "Numeruotas sąrašas", @@ -108,28 +102,21 @@ Button : "Mygtukas", SelectionField : "Atrankos laukas", ImageButton : "Vaizdinis mygtukas", -FitWindow : "Padidinti redaktorių", -ShowBlocks : "Rodyti blokus", +FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Taisyti nuorodą", -CellCM : "Langelis", -RowCM : "Eilutė", -ColumnCM : "Stulpelis", -InsertRowAfter : "Įterpti eilutę po", -InsertRowBefore : "Įterpti eilutę prieš", +CellCM : "Cell", //MISSING +RowCM : "Row", //MISSING +ColumnCM : "Column", //MISSING +InsertRow : "Įterpti eilutę", DeleteRows : "Šalinti eilutes", -InsertColumnAfter : "Įterpti stulpelį po", -InsertColumnBefore : "Įterpti stulpelį prieš", +InsertColumn : "Įterpti stulpelį", DeleteColumns : "Šalinti stulpelius", -InsertCellAfter : "Įterpti langelį po", -InsertCellBefore : "Įterpti langelį prieš", +InsertCell : "Įterpti langelį", DeleteCells : "Šalinti langelius", MergeCells : "Sujungti langelius", -MergeRight : "Sujungti su dešine", -MergeDown : "Sujungti su apačia", -HorizontalSplitCell : "Skaidyti langelį horizontaliai", -VerticalSplitCell : "Skaidyti langelį vertikaliai", +SplitCell : "Skaidyti langelius", TableDelete : "Šalinti lentelę", CellProperties : "Langelio savybės", TableProperties : "Lentelės savybės", @@ -147,7 +134,7 @@ SelectionFieldProp : "Atrankos lauko savybės", TextareaProp : "Teksto srities savybės", FormProp : "Formos savybės", -FontFormats : "Normalus;Formuotas;Kreipinio;Antraštinis 1;Antraštinis 2;Antraštinis 3;Antraštinis 4;Antraštinis 5;Antraštinis 6", +FontFormats : "Normalus;Formuotas;Kreipinio;Antraštinis 1;Antraštinis 2;Antraštinis 3;Antraštinis 4;Antraštinis 5;Antraštinis 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Apdorojamas XHTML. Prašome palaukti...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Mygtukų juostos rinkinys \"%1\" neegzistuoja", NoActiveX : "Jūsų naršyklės saugumo nuostatos gali riboti kai kurias redaktoriaus savybes. Jūs turite aktyvuoti opciją \"Run ActiveX controls and plug-ins\". Kitu atveju Jums bus pranešama apie klaidas ir trūkstamas savybes.", BrowseServerBlocked : "Neįmanoma atidaryti naujo naršyklės lango. Įsitikinkite, kad iškylančių langų blokavimo programos neveiksnios.", DialogBlocked : "Neįmanoma atidaryti dialogo lango. Įsitikinkite, kad iškylančių langų blokavimo programos neveiksnios.", -VisitLinkBlocked : "Neįmanoma atidaryti naujo lango. Įsitikinkite, kad iškylančių langų blokavimo programos neveiksnios.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Pasirinkite žymę", DlgLnkAnchorByName : "Pagal žymės vardą", DlgLnkAnchorById : "Pagal žymės Id", -DlgLnkNoAnchors : "(Šiame dokumente žymių nėra)", +DlgLnkNoAnchors : "<Šiame dokumente žymių nėra>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "El.pašto adresas", DlgLnkEMailSubject : "Žinutės tema", DlgLnkEMailBody : "Žinutės turinys", @@ -276,7 +262,7 @@ DlgLnkPopTop : "Viršutinė pozicija", DlnLnkMsgNoUrl : "Prašome įvesti nuorodos URL", DlnLnkMsgNoEMail : "Prašome įvesti el.pašto adresą", DlnLnkMsgNoAnchor : "Prašome pasirinkti žymę", -DlnLnkMsgInvPopName : "Iššokančio lango pavadinimas privalo prasidėti lotyniška raide ir negali turėti tarpų", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Pasirinkite spalvą", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Tarpas tarp langelių", DlgTableCellPad : "Trapas nuo langelio rėmo iki teksto", DlgTableCaption : "Antraštė", DlgTableSummary : "Santrauka", -DlgTableHeaders : "Antraštės", -DlgTableHeadersNone : "Nėra", -DlgTableHeadersColumn : "Pirmas stulpelis", -DlgTableHeadersRow : "Pirma eilutė", -DlgTableHeadersBoth : "Abu", // Table Cell Dialog DlgCellTitle : "Langelio savybės", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Viršų", DlgCellVerAlignMiddle : "Vidurį", DlgCellVerAlignBottom : "Apačią", DlgCellVerAlignBaseline : "Apatinę liniją", -DlgCellType : "Langelio tipas", -DlgCellTypeData : "Duomenys", -DlgCellTypeHeader : "Antraštė", DlgCellRowSpan : "Eilučių apjungimas", DlgCellCollSpan : "Stulpelių apjungimas", DlgCellBackColor : "Fono spalva", DlgCellBorderColor : "Rėmelio spalva", DlgCellBtnSelect : "Pažymėti...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Surasti ir pakeisti", - // Find Dialog DlgFindTitle : "Paieška", DlgFindFindBtn : "Surasti", @@ -368,10 +343,11 @@ PasteErrorCopy : "Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui a PasteAsText : "Įdėti kaip gryną tekstą", PasteFromWord : "Įdėti iš Word", -DlgPasteMsg2 : "Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami klaviatūrą (Ctrl+V) ir paspauskite mygtuką OK.", -DlgPasteSec : "Dėl jūsų naršyklės saugumo nustatymų, redaktorius negali tiesiogiai pasiekti laikinosios atminties. Jums reikia nukopijuoti dar kartą į šį langą.", +DlgPasteMsg2 : "Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami klaviatūrą (Ctrl+V) ir spūstelkite mygtuką OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoruoti šriftų nustatymus", DlgPasteRemoveStyles : "Pašalinti stilių nustatymus", +DlgPasteCleanBox : "Trinti įvedimo lauką", // Color Picker ColorAutomatic : "Automatinis", @@ -405,9 +381,9 @@ IeSpellDownload : "Rašybos tikrinimas neinstaliuotas. Ar Jūs norite jį daba // Button Dialog DlgButtonText : "Tekstas (Reikšmė)", DlgButtonType : "Tipas", -DlgButtonTypeBtn : "Mygtukas", -DlgButtonTypeSbm : "Siųsti", -DlgButtonTypeRst : "Išvalyti", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Vardas", @@ -456,7 +432,7 @@ DlgHiddenValue : "Reikšmė", // Bulleted List Dialog BulletedListProp : "Suženklinto sąrašo savybės", NumberedListProp : "Numeruoto sąrašo savybės", -DlgLstStart : "Pradėti nuo", +DlgLstStart : "Start", //MISSING DlgLstType : "Tipas", DlgLstTypeCircle : "Apskritimas", DlgLstTypeDisc : "Diskas", @@ -479,15 +455,15 @@ DlgDocLangDirLTR : "Iš kairės į dešinę (LTR)", DlgDocLangDirRTL : "Iš dešinės į kairę (RTL)", DlgDocLangCode : "Kalbos kodas", DlgDocCharSet : "Simbolių kodavimo lentelė", -DlgDocCharSetCE : "Centrinės Europos", -DlgDocCharSetCT : "Tradicinės kinų (Big5)", -DlgDocCharSetCR : "Kirilica", -DlgDocCharSetGR : "Graikų", -DlgDocCharSetJP : "Japonų", -DlgDocCharSetKR : "Korėjiečių", -DlgDocCharSetTR : "Turkų", -DlgDocCharSetUN : "Unikodas (UTF-8)", -DlgDocCharSetWE : "Vakarų Europos", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Kita simbolių kodavimo lentelė", DlgDocDocType : "Dokumento tipo antraštė", @@ -517,23 +493,12 @@ DlgTemplatesTitle : "Turinio šablonai", DlgTemplatesSelMsg : "Pasirinkite norimą šabloną
(Dėmesio! esamas turinys bus prarastas):", DlgTemplatesLoading : "Įkeliamas šablonų sąrašas. Prašome palaukti...", DlgTemplatesNoTpl : "(Šablonų sąrašas tuščias)", -DlgTemplatesReplace : "Pakeisti dabartinį turinį pasirinktu šablonu", +DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Apie", DlgAboutBrowserInfoTab : "Naršyklės informacija", -DlgAboutLicenseTab : "Licenzija", +DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "versija", -DlgAboutInfo : "Papildomą informaciją galima gauti", - -// Div Dialog -DlgDivGeneralTab : "Bendros savybės", -DlgDivAdvancedTab : "Papildomos savybės", -DlgDivStyle : "Stilius", -DlgDivInlineStyle : "Stilius kode", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Papildomą informaciją galima gauti" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/lv.js b/httemplate/elements/fckeditor/editor/lang/lv.js index 666dca79a..680942675 100644 --- a/httemplate/elements/fckeditor/editor/lang/lv.js +++ b/httemplate/elements/fckeditor/editor/lang/lv.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Noņemt stilus", InsertLinkLbl : "Hipersaite", InsertLink : "Ievietot/Labot hipersaiti", RemoveLink : "Noņemt hipersaiti", -VisitLink : "Open Link", //MISSING Anchor : "Ievietot/Labot iezīmi", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "Attēls", InsertImage : "Ievietot/Labot Attēlu", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Izlīdzināt pa labi", BlockJustify : "Izlīdzināt malas", DecreaseIndent : "Samazināt atkāpi", IncreaseIndent : "Palielināt atkāpi", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Atcelt", Redo : "Atkārtot", NumberedListLbl : "Numurēts saraksts", @@ -109,27 +103,20 @@ SelectionField : "Iezīmēšanas lauks", ImageButton : "Attēlpoga", FitWindow : "Maksimizēt redaktora izmēru", -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Labot hipersaiti", CellCM : "Šūna", RowCM : "Rinda", ColumnCM : "Kolonna", -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "Ievietot rindu", DeleteRows : "Dzēst rindas", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "Ievietot kolonnu", DeleteColumns : "Dzēst kolonnas", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "Ievietot rūtiņu", DeleteCells : "Dzēst rūtiņas", MergeCells : "Apvienot rūtiņas", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "Sadalīt rūtiņu", TableDelete : "Dzēst tabulu", CellProperties : "Rūtiņas īpašības", TableProperties : "Tabulas īpašības", @@ -147,7 +134,7 @@ SelectionFieldProp : "Iezīmēšanas lauka īpašības", TextareaProp : "Teksta laukuma īpašības", FormProp : "Formas īpašības", -FontFormats : "Normāls teksts;Formatēts teksts;Adrese;Virsraksts 1;Virsraksts 2;Virsraksts 3;Virsraksts 4;Virsraksts 5;Virsraksts 6;Rindkopa (DIV)", +FontFormats : "Normāls teksts;Formatēts teksts;Adrese;Virsraksts 1;Virsraksts 2;Virsraksts 3;Virsraksts 4;Virsraksts 5;Virsraksts 6;Rindkopa (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Tiek apstrādāts XHTML. Lūdzu uzgaidiet...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Rīku joslas komplekts \"%1\" neeksistē", NoActiveX : "Interneta pārlūkprogrammas drošības uzstādījumi varētu ietekmēt dažas no redaktora īpašībām. Jābūt aktivizētai sadaļai \"Run ActiveX controls and plug-ins\". Savādāk ir iespējamas kļūdas darbībā un kļūdu paziņojumu parādīšanās.", BrowseServerBlocked : "Resursu pārlūks nevar tikt atvērts. Pārliecinieties, ka uznirstošo logu bloķētāji ir atslēgti.", DialogBlocked : "Nav iespējams atvērt dialoglogu. Pārliecinieties, ka uznirstošo logu bloķētāji ir atslēgti.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "Darīts!", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Izvēlēties iezīmi", DlgLnkAnchorByName : "Pēc iezīmes nosaukuma", DlgLnkAnchorById : "Pēc elementa ID", -DlgLnkNoAnchors : "(Šajā dokumentā nav iezīmju)", +DlgLnkNoAnchors : "<Šajā dokumentā nav iezīmju>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-pasta adrese", DlgLnkEMailSubject : "Ziņas tēma", DlgLnkEMailBody : "Ziņas saturs", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Rūtiņu atstatums", DlgTableCellPad : "Rūtiņu nobīde", DlgTableCaption : "Leģenda", DlgTableSummary : "Anotācija", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Rūtiņas īpašības", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Augša", DlgCellVerAlignMiddle : "Vidus", DlgCellVerAlignBottom : "Apakša", DlgCellVerAlignBaseline : "Pamatrindā", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Rindu pārnese", DlgCellCollSpan : "Kolonnu pārnese", DlgCellBackColor : "Fona krāsa", DlgCellBorderColor : "Rāmja krāsa", DlgCellBtnSelect : "Iezīmē...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Meklētājs", DlgFindFindBtn : "Meklēt", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Lūdzu, ievietojiet tekstu šajā laukumā, izmantojot klaviatū DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorēt iepriekš norādītos fontus", DlgPasteRemoveStyles : "Noņemt norādītos stilus", +DlgPasteCleanBox : "Apstrādāt laukuma saturu", // Color Picker ColorAutomatic : "Automātiska", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Par", DlgAboutBrowserInfoTab : "Informācija par pārlūkprogrammu", DlgAboutLicenseTab : "Licence", DlgAboutVersion : "versija", -DlgAboutInfo : "Papildus informācija ir pieejama", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Papildus informācija ir pieejama" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/mn.js b/httemplate/elements/fckeditor/editor/lang/mn.js index 4f822975b..ba8f798e6 100644 --- a/httemplate/elements/fckeditor/editor/lang/mn.js +++ b/httemplate/elements/fckeditor/editor/lang/mn.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,13 +44,11 @@ RemoveFormat : "Формат авч хаях", InsertLinkLbl : "Линк", InsertLink : "Линк Оруулах/Засварлах", RemoveLink : "Линк авч хаях", -VisitLink : "Open Link", //MISSING -Anchor : "Холбоос Оруулах/Засварлах", -AnchorDelete : "Холбоос Авах", +Anchor : "Insert/Edit Anchor", //MISSING InsertImageLbl : "Зураг", InsertImage : "Зураг Оруулах/Засварлах", -InsertFlashLbl : "Флаш", -InsertFlash : "Флаш Оруулах/Засварлах", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Хүснэгт", InsertTable : "Хүснэгт Оруулах/Засварлах", InsertLineLbl : "Зураас", @@ -72,10 +70,6 @@ RightJustify : "Баруун талд байрлуулах", BlockJustify : "Блок хэлбэрээр байрлуулах", DecreaseIndent : "Догол мөр нэмэх", IncreaseIndent : "Догол мөр хасах", -Blockquote : "Хайрцаглах", -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Хүчингүй болгох", Redo : "Өмнөх үйлдлээ сэргээх", NumberedListLbl : "Дугаарлагдсан жагсаалт", @@ -93,61 +87,54 @@ BGColor : "Фонны өнгө", Source : "Код", Find : "Хайх", Replace : "Солих", -SpellCheck : "Үгийн дүрэх шалгах", -UniversalKeyboard : "Униварсал гар", -PageBreakLbl : "Хуудас тусгаарлах", -PageBreak : "Хуудас тусгаарлагч оруулах", - -Form : "Форм", -Checkbox : "Чекбокс", -RadioButton : "Радио товч", -TextField : "Техт талбар", -Textarea : "Техт орчин", -HiddenField : "Нууц талбар", -Button : "Товч", -SelectionField : "Сонгогч талбар", -ImageButton : "Зурагтай товч", - -FitWindow : "editor-н хэмжээг томруулах", -ShowBlocks : "Block-уудыг үзүүлэх", +SpellCheck : "Check Spelling", //MISSING +UniversalKeyboard : "Universal Keyboard", //MISSING +PageBreakLbl : "Page Break", //MISSING +PageBreak : "Insert Page Break", //MISSING + +Form : "Form", //MISSING +Checkbox : "Checkbox", //MISSING +RadioButton : "Radio Button", //MISSING +TextField : "Text Field", //MISSING +Textarea : "Textarea", //MISSING +HiddenField : "Hidden Field", //MISSING +Button : "Button", //MISSING +SelectionField : "Selection Field", //MISSING +ImageButton : "Image Button", //MISSING + +FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Холбоос засварлах", -CellCM : "Нүх/зай", -RowCM : "Мөр", -ColumnCM : "Багана", -InsertRowAfter : "Мөр дараа нь оруулах", -InsertRowBefore : "Мөр өмнө нь оруулах", +CellCM : "Cell", //MISSING +RowCM : "Row", //MISSING +ColumnCM : "Column", //MISSING +InsertRow : "Мөр оруулах", DeleteRows : "Мөр устгах", -InsertColumnAfter : "Багана дараа нь оруулах", -InsertColumnBefore : "Багана өмнө нь оруулах", +InsertColumn : "Багана оруулах", DeleteColumns : "Багана устгах", -InsertCellAfter : "Нүх/зай дараа нь оруулах", -InsertCellBefore : "Нүх/зай өмнө нь оруулах", +InsertCell : "Нүх оруулах", DeleteCells : "Нүх устгах", MergeCells : "Нүх нэгтэх", -MergeRight : "Баруун тийш нэгтгэх", -MergeDown : "Доош нэгтгэх", -HorizontalSplitCell : "Нүх/зайг босоогоор нь тусгаарлах", -VerticalSplitCell : "Нүх/зайг хөндлөнгөөр нь тусгаарлах", -TableDelete : "Хүснэгт устгах", -CellProperties : "Нүх/зай зайн шинж чанар", +SplitCell : "Нүх тусгайрлах", +TableDelete : "Delete Table", //MISSING +CellProperties : "Хоосон зайн шинж чанар", TableProperties : "Хүснэгт", ImageProperties : "Зураг", -FlashProperties : "Флаш шинж чанар", +FlashProperties : "Flash Properties", //MISSING -AnchorProp : "Холбоос шинж чанар", -ButtonProp : "Товчны шинж чанар", -CheckboxProp : "Чекбоксны шинж чанар", -HiddenFieldProp : "Нууц талбарын шинж чанар", -RadioButtonProp : "Радио товчны шинж чанар", -ImageButtonProp : "Зурган товчны шинж чанар", -TextFieldProp : "Текст талбарын шинж чанар", -SelectionFieldProp : "Согогч талбарын шинж чанар", -TextareaProp : "Текст орчны шинж чанар", -FormProp : "Форм шинж чанар", +AnchorProp : "Anchor Properties", //MISSING +ButtonProp : "Button Properties", //MISSING +CheckboxProp : "Checkbox Properties", //MISSING +HiddenFieldProp : "Hidden Field Properties", //MISSING +RadioButtonProp : "Radio Button Properties", //MISSING +ImageButtonProp : "Image Button Properties", //MISSING +TextFieldProp : "Text Field Properties", //MISSING +SelectionFieldProp : "Selection Field Properties", //MISSING +TextareaProp : "Textarea Properties", //MISSING +FormProp : "Form Properties", //MISSING -FontFormats : "Хэвийн;Formatted;Хаяг;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Paragraph (DIV)", +FontFormats : "Хэвийн;Formatted;Хаяг;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Paragraph (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML үйл явц явагдаж байна. Хүлээнэ үү...", @@ -158,20 +145,19 @@ UnknownToolbarItem : "Багажны хэсгийн \"%1\" item мэдэгдэх UnknownCommand : "\"%1\" комманд нэр мэдагдэхгүй байна", NotImplemented : "Зөвшөөрөгдөхгүй комманд", UnknownToolbarSet : "Багажны хэсэгт \"%1\" оноох, үүсээгүй байна", -NoActiveX : "Таны үзүүлэгч/browser-н хамгаалалтын тохиргоо editor-н зарим боломжийг хязгаарлаж байна. Та \"Run ActiveX controls ба plug-ins\" сонголыг идвэхитэй болго.", -BrowseServerBlocked : "Нөөц үзүүгч нээж чадсангүй. Бүх popup blocker-г disabled болгоно уу.", -DialogBlocked : "Харилцах цонхонд энийг нээхэд боломжгүй ээ. Бүх popup blocker-г disabled болгоно уу.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Болих", DlgBtnClose : "Хаах", -DlgBtnBrowseServer : "Сервер харуулах", +DlgBtnBrowseServer : "Browse Server", //MISSING DlgAdvancedTag : "Нэмэлт", -DlgOpOther : "<Бусад>", -DlgInfoTab : "Мэдээлэл", -DlgAlertUrl : "URL оруулна уу", +DlgOpOther : "", //MISSING +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<Оноохгүй>", @@ -199,7 +185,7 @@ DlgImgUpload : "Хуулах", DlgImgAlt : "Тайлбар текст", DlgImgWidth : "Өргөн", DlgImgHeight : "Өндөр", -DlgImgLockRatio : "Радио түгжих", +DlgImgLockRatio : "Lock Ratio", DlgBtnResetSize : "хэмжээ дахин оноох", DlgImgBorder : "Хүрээ", DlgImgHSpace : "Хөндлөн зай", @@ -216,17 +202,17 @@ DlgImgAlignTextTop : "Текст дээр", DlgImgAlignTop : "Дээд талд", DlgImgPreview : "Уридчлан харах", DlgImgAlertUrl : "Зурагны URL-ын төрлийн сонгоно уу", -DlgImgLinkTab : "Линк", +DlgImgLinkTab : "Link", //MISSING // Flash Dialog -DlgFlashTitle : "Флаш шинж чанар", -DlgFlashChkPlay : "Автоматаар тоглох", -DlgFlashChkLoop : "Давтах", -DlgFlashChkMenu : "Флаш цэс идвэхжүүлэх", -DlgFlashScale : "Өргөгтгөх", -DlgFlashScaleAll : "Бүгдийг харуулах", -DlgFlashScaleNoBorder : "Хүрээгүй", -DlgFlashScaleFit : "Яг тааруулах", +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING // Link Dialog DlgLnkWindowTitle : "Линк", @@ -243,9 +229,9 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Холбоос сонгох", DlgLnkAnchorByName : "Холбоосын нэрээр", DlgLnkAnchorById : "Элемэнт Id-гаар", -DlgLnkNoAnchors : "(Баримт бичиг холбоосгүй байна)", +DlgLnkNoAnchors : "<Баримт бичиг холбоосгүй байна>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Хаяг", -DlgLnkEMailSubject : "Message гарчиг", +DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message-ийн агуулга", DlgLnkUpload : "Хуулах", DlgLnkBtnUpload : "Үүнийг серверрүү илгээ", @@ -257,7 +243,7 @@ DlgLnkTargetBlank : "Шинэ цонх (_blank)", DlgLnkTargetParent : "Эцэг цонх (_parent)", DlgLnkTargetSelf : "Төстэй цонх (_self)", DlgLnkTargetTop : "Хамгийн түрүүн байх цонх (_top)", -DlgLnkTargetFrameName : "Очих фремын нэр", +DlgLnkTargetFrameName : "Target Frame Name", //MISSING DlgLnkPopWinName : "Popup цонхны нэр", DlgLnkPopWinFeat : "Popup цонхны онцлог", DlgLnkPopResize : "Хэмжээ өөрчлөх", @@ -276,7 +262,7 @@ DlgLnkPopTop : "Дээд байрлал", DlnLnkMsgNoUrl : "Линк URL-ээ төрөлжүүлнэ үү", DlnLnkMsgNoEMail : "Е-mail хаягаа төрөлжүүлнэ үү", DlnLnkMsgNoAnchor : "Холбоосоо сонгоно уу", -DlnLnkMsgInvPopName : "popup нэр нь үсгэн тэмдэгтээр эхэлсэн байх ба хоосон зай агуулаагүй байх ёстой.", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Өнгө сонгох", @@ -304,15 +290,10 @@ DlgTableWidth : "Өргөн", DlgTableWidthPx : "цэг", DlgTableWidthPc : "хувь", DlgTableHeight : "Өндөр", -DlgTableCellSpace : "Нүх хоорондын зай (spacing)", -DlgTableCellPad : "Нүх доторлох(padding)", +DlgTableCellSpace : "Нүх хоорондын зай", +DlgTableCellPad : "Нүх доторлох", DlgTableCaption : "Тайлбар", -DlgTableSummary : "Тайлбар", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING +DlgTableSummary : "Summary", //MISSING // Table Cell Dialog DlgCellTitle : "Хоосон зайн шинж чанар", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Дээд тал", DlgCellVerAlignMiddle : "Дунд", DlgCellVerAlignBottom : "Доод тал", DlgCellVerAlignBaseline : "Baseline", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING -DlgCellRowSpan : "Нийт мөр (span)", -DlgCellCollSpan : "Нийт багана (span)", +DlgCellRowSpan : "Нийт мөр", +DlgCellCollSpan : "Нийт багана", DlgCellBackColor : "Фонны өнгө", DlgCellBorderColor : "Хүрээний өнгө", DlgCellBtnSelect : "Сонго...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Хай мөн Дарж бич", - // Find Dialog DlgFindTitle : "Хайх", DlgFindFindBtn : "Хайх", @@ -368,172 +343,162 @@ PasteErrorCopy : "Таны browser-ын хамгаалалтын тохирго PasteAsText : "Plain Text-ээс буулгах", PasteFromWord : "Word-оос буулгах", -DlgPasteMsg2 : "(Ctrl+V) товчийг ашиглан paste хийнэ үү. Мөн OK дар.", -DlgPasteSec : "Таны үзүүлэгч/browser/-н хамгаалалтын тохиргооноос болоод editor clipboard өгөгдөлрүү шууд хандах боломжгүй. Энэ цонход дахин paste хийхийг оролд.", -DlgPasteIgnoreFont : "Тодорхойлогдсон Font Face зөвшөөрнө", -DlgPasteRemoveStyles : "Тодорхойлогдсон загварыг авах", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING // Color Picker ColorAutomatic : "Автоматаар", ColorMoreColors : "Нэмэлт өнгөнүүд...", // Document Properties -DocProps : "Баримт бичиг шинж чанар", +DocProps : "Document Properties", //MISSING // Anchor Dialog -DlgAnchorTitle : "Холбоос шинж чанар", -DlgAnchorName : "Холбоос нэр", -DlgAnchorErrorName : "Холбоос төрөл оруулна уу", +DlgAnchorTitle : "Anchor Properties", //MISSING +DlgAnchorName : "Anchor Name", //MISSING +DlgAnchorErrorName : "Please type the anchor name", //MISSING // Speller Pages Dialog -DlgSpellNotInDic : "Толь бичиггүй", -DlgSpellChangeTo : "Өөрчлөх", -DlgSpellBtnIgnore : "Зөвшөөрөх", -DlgSpellBtnIgnoreAll : "Бүгдийг зөвшөөрөх", -DlgSpellBtnReplace : "Дарж бичих", -DlgSpellBtnReplaceAll : "Бүгдийг Дарж бичих", -DlgSpellBtnUndo : "Буцаах", -DlgSpellNoSuggestions : "- Тайлбаргүй -", -DlgSpellProgress : "Дүрэм шалгаж байгаа үйл явц...", -DlgSpellNoMispell : "Дүрэм шалгаад дууссан: Алдаа олдсонгүй", -DlgSpellNoChanges : "Дүрэм шалгаад дууссан: үг өөрчлөгдөөгүй", -DlgSpellOneChange : "Дүрэм шалгаад дууссан: 1 үг өөрчлөгдсөн", -DlgSpellManyChanges : "Дүрэм шалгаад дууссан: %1 үг өөрчлөгдсөн", - -IeSpellDownload : "Дүрэм шалгагч суугаагүй байна. Татаж авахыг хүсч байна уу?", +DlgSpellNotInDic : "Not in dictionary", //MISSING +DlgSpellChangeTo : "Change to", //MISSING +DlgSpellBtnIgnore : "Ignore", //MISSING +DlgSpellBtnIgnoreAll : "Ignore All", //MISSING +DlgSpellBtnReplace : "Replace", //MISSING +DlgSpellBtnReplaceAll : "Replace All", //MISSING +DlgSpellBtnUndo : "Undo", //MISSING +DlgSpellNoSuggestions : "- No suggestions -", //MISSING +DlgSpellProgress : "Spell check in progress...", //MISSING +DlgSpellNoMispell : "Spell check complete: No misspellings found", //MISSING +DlgSpellNoChanges : "Spell check complete: No words changed", //MISSING +DlgSpellOneChange : "Spell check complete: One word changed", //MISSING +DlgSpellManyChanges : "Spell check complete: %1 words changed", //MISSING + +IeSpellDownload : "Spell checker not installed. Do you want to download it now?", //MISSING // Button Dialog -DlgButtonText : "Тэкст (Утга)", -DlgButtonType : "Төрөл", -DlgButtonTypeBtn : "Товч", -DlgButtonTypeSbm : "Submit", -DlgButtonTypeRst : "Болих", +DlgButtonText : "Text (Value)", //MISSING +DlgButtonType : "Type", //MISSING +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs -DlgCheckboxName : "Нэр", -DlgCheckboxValue : "Утга", -DlgCheckboxSelected : "Сонгогдсон", +DlgCheckboxName : "Name", //MISSING +DlgCheckboxValue : "Value", //MISSING +DlgCheckboxSelected : "Selected", //MISSING // Form Dialog -DlgFormName : "Нэр", -DlgFormAction : "Үйлдэл", -DlgFormMethod : "Арга", +DlgFormName : "Name", //MISSING +DlgFormAction : "Action", //MISSING +DlgFormMethod : "Method", //MISSING // Select Field Dialog -DlgSelectName : "Нэр", -DlgSelectValue : "Утга", -DlgSelectSize : "Хэмжээ", -DlgSelectLines : "Мөр", -DlgSelectChkMulti : "Олон сонголт зөвшөөрөх", -DlgSelectOpAvail : "Идвэхтэй сонголт", -DlgSelectOpText : "Тэкст", -DlgSelectOpValue : "Утга", -DlgSelectBtnAdd : "Нэмэх", -DlgSelectBtnModify : "Өөрчлөх", -DlgSelectBtnUp : "Дээш", -DlgSelectBtnDown : "Доош", -DlgSelectBtnSetValue : "Сонгогдсан утга оноох", -DlgSelectBtnDelete : "Устгах", +DlgSelectName : "Name", //MISSING +DlgSelectValue : "Value", //MISSING +DlgSelectSize : "Size", //MISSING +DlgSelectLines : "lines", //MISSING +DlgSelectChkMulti : "Allow multiple selections", //MISSING +DlgSelectOpAvail : "Available Options", //MISSING +DlgSelectOpText : "Text", //MISSING +DlgSelectOpValue : "Value", //MISSING +DlgSelectBtnAdd : "Add", //MISSING +DlgSelectBtnModify : "Modify", //MISSING +DlgSelectBtnUp : "Up", //MISSING +DlgSelectBtnDown : "Down", //MISSING +DlgSelectBtnSetValue : "Set as selected value", //MISSING +DlgSelectBtnDelete : "Delete", //MISSING // Textarea Dialog -DlgTextareaName : "Нэр", -DlgTextareaCols : "Багана", -DlgTextareaRows : "Мөр", +DlgTextareaName : "Name", //MISSING +DlgTextareaCols : "Columns", //MISSING +DlgTextareaRows : "Rows", //MISSING // Text Field Dialog -DlgTextName : "Нэр", -DlgTextValue : "Утга", -DlgTextCharWidth : "Тэмдэгтын өргөн", -DlgTextMaxChars : "Хамгийн их тэмдэгт", -DlgTextType : "Төрөл", -DlgTextTypeText : "Текст", -DlgTextTypePass : "Нууц үг", +DlgTextName : "Name", //MISSING +DlgTextValue : "Value", //MISSING +DlgTextCharWidth : "Character Width", //MISSING +DlgTextMaxChars : "Maximum Characters", //MISSING +DlgTextType : "Type", //MISSING +DlgTextTypeText : "Text", //MISSING +DlgTextTypePass : "Password", //MISSING // Hidden Field Dialog -DlgHiddenName : "Нэр", -DlgHiddenValue : "Утга", +DlgHiddenName : "Name", //MISSING +DlgHiddenValue : "Value", //MISSING // Bulleted List Dialog -BulletedListProp : "Bulleted жагсаалын шинж чанар", -NumberedListProp : "Дугаарласан жагсаалын шинж чанар", -DlgLstStart : "Эхлэх", -DlgLstType : "Төрөл", -DlgLstTypeCircle : "Тойрог", -DlgLstTypeDisc : "Тайлбар", -DlgLstTypeSquare : "Square", -DlgLstTypeNumbers : "Тоо (1, 2, 3)", -DlgLstTypeLCase : "Жижиг үсэг (a, b, c)", -DlgLstTypeUCase : "Том үсэг (A, B, C)", -DlgLstTypeSRoman : "Жижиг Ром тоо (i, ii, iii)", -DlgLstTypeLRoman : "Том Ром тоо (I, II, III)", +BulletedListProp : "Bulleted List Properties", //MISSING +NumberedListProp : "Numbered List Properties", //MISSING +DlgLstStart : "Start", //MISSING +DlgLstType : "Type", //MISSING +DlgLstTypeCircle : "Circle", //MISSING +DlgLstTypeDisc : "Disc", //MISSING +DlgLstTypeSquare : "Square", //MISSING +DlgLstTypeNumbers : "Numbers (1, 2, 3)", //MISSING +DlgLstTypeLCase : "Lowercase Letters (a, b, c)", //MISSING +DlgLstTypeUCase : "Uppercase Letters (A, B, C)", //MISSING +DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", //MISSING +DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", //MISSING // Document Properties Dialog -DlgDocGeneralTab : "Ерөнхий", -DlgDocBackTab : "Фоно", -DlgDocColorsTab : "Захын зай ба Өнгө", -DlgDocMetaTab : "Meta өгөгдөл", - -DlgDocPageTitle : "Хуудасны гарчиг", -DlgDocLangDir : "Хэлний чиглэл", -DlgDocLangDirLTR : "Зүүнээс баруунруу (LTR)", -DlgDocLangDirRTL : "Баруунаас зүүнрүү (RTL)", -DlgDocLangCode : "Хэлний код", -DlgDocCharSet : "Encoding тэмдэгт", -DlgDocCharSetCE : "Төв европ", -DlgDocCharSetCT : "Хятадын уламжлалт (Big5)", -DlgDocCharSetCR : "Крил", -DlgDocCharSetGR : "Гред", -DlgDocCharSetJP : "Япон", -DlgDocCharSetKR : "Солонгос", -DlgDocCharSetTR : "Tурк", -DlgDocCharSetUN : "Юникод (UTF-8)", -DlgDocCharSetWE : "Баруун европ", -DlgDocCharSetOther : "Encoding-д өөр тэмдэгт оноох", - -DlgDocDocType : "Баримт бичгийн төрөл Heading", -DlgDocDocTypeOther : "Бусад баримт бичгийн төрөл Heading", -DlgDocIncXHTML : "XHTML агуулж зарлах", -DlgDocBgColor : "Фоно өнгө", -DlgDocBgImage : "Фоно зурагны URL", -DlgDocBgNoScroll : "Гүйдэггүй фоно", -DlgDocCText : "Текст", -DlgDocCLink : "Линк", -DlgDocCVisited : "Зочилсон линк", -DlgDocCActive : "Идвэхитэй линк", -DlgDocMargins : "Хуудасны захын зай", -DlgDocMaTop : "Дээд тал", -DlgDocMaLeft : "Зүүн тал", -DlgDocMaRight : "Баруун тал", -DlgDocMaBottom : "Доод тал", -DlgDocMeIndex : "Баримт бичгийн индекс түлхүүр үг (таслалаар тусгаарлагдана)", -DlgDocMeDescr : "Баримт бичгийн тайлбар", -DlgDocMeAuthor : "Зохиогч", -DlgDocMeCopy : "Зохиогчийн эрх", -DlgDocPreview : "Харах", +DlgDocGeneralTab : "General", //MISSING +DlgDocBackTab : "Background", //MISSING +DlgDocColorsTab : "Colors and Margins", //MISSING +DlgDocMetaTab : "Meta Data", //MISSING + +DlgDocPageTitle : "Page Title", //MISSING +DlgDocLangDir : "Language Direction", //MISSING +DlgDocLangDirLTR : "Left to Right (LTR)", //MISSING +DlgDocLangDirRTL : "Right to Left (RTL)", //MISSING +DlgDocLangCode : "Language Code", //MISSING +DlgDocCharSet : "Character Set Encoding", //MISSING +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING +DlgDocCharSetOther : "Other Character Set Encoding", //MISSING + +DlgDocDocType : "Document Type Heading", //MISSING +DlgDocDocTypeOther : "Other Document Type Heading", //MISSING +DlgDocIncXHTML : "Include XHTML Declarations", //MISSING +DlgDocBgColor : "Background Color", //MISSING +DlgDocBgImage : "Background Image URL", //MISSING +DlgDocBgNoScroll : "Nonscrolling Background", //MISSING +DlgDocCText : "Text", //MISSING +DlgDocCLink : "Link", //MISSING +DlgDocCVisited : "Visited Link", //MISSING +DlgDocCActive : "Active Link", //MISSING +DlgDocMargins : "Page Margins", //MISSING +DlgDocMaTop : "Top", //MISSING +DlgDocMaLeft : "Left", //MISSING +DlgDocMaRight : "Right", //MISSING +DlgDocMaBottom : "Bottom", //MISSING +DlgDocMeIndex : "Document Indexing Keywords (comma separated)", //MISSING +DlgDocMeDescr : "Document Description", //MISSING +DlgDocMeAuthor : "Author", //MISSING +DlgDocMeCopy : "Copyright", //MISSING +DlgDocPreview : "Preview", //MISSING // Templates Dialog -Templates : "Загварууд", -DlgTemplatesTitle : "Загварын агуулга", -DlgTemplatesSelMsg : "Загварыг нээж editor-рүү сонгож оруулна уу
(Одоогийн агууллагыг устаж магадгүй):", -DlgTemplatesLoading : "Загваруудыг ачааллаж байна. Түр хүлээнэ үү...", -DlgTemplatesNoTpl : "(Загвар тодорхойлогдоогүй байна)", -DlgTemplatesReplace : "Одоогийн агууллагыг дарж бичих", +Templates : "Templates", //MISSING +DlgTemplatesTitle : "Content Templates", //MISSING +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING +DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING +DlgTemplatesNoTpl : "(No templates defined)", //MISSING +DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog -DlgAboutAboutTab : "Тухай", -DlgAboutBrowserInfoTab : "Мэдээлэл үзүүлэгч", -DlgAboutLicenseTab : "Лиценз", +DlgAboutAboutTab : "About", //MISSING +DlgAboutBrowserInfoTab : "Browser Info", //MISSING +DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "Хувилбар", -DlgAboutInfo : "Мэдээллээр туслах", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Мэдээллээр туслах" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/ms.js b/httemplate/elements/fckeditor/editor/lang/ms.js index 1e97973e9..efe05299f 100644 --- a/httemplate/elements/fckeditor/editor/lang/ms.js +++ b/httemplate/elements/fckeditor/editor/lang/ms.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Buang Format", InsertLinkLbl : "Sambungan", InsertLink : "Masukkan/Sunting Sambungan", RemoveLink : "Buang Sambungan", -VisitLink : "Open Link", //MISSING Anchor : "Masukkan/Sunting Pautan", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "Gambar", InsertImage : "Masukkan/Sunting Gambar", InsertFlashLbl : "Flash", //MISSING @@ -72,10 +70,6 @@ RightJustify : "Jajaran Kanan", BlockJustify : "Jajaran Blok", DecreaseIndent : "Kurangkan Inden", IncreaseIndent : "Tambahkan Inden", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Batalkan", Redo : "Ulangkan", NumberedListLbl : "Senarai bernombor", @@ -109,27 +103,20 @@ SelectionField : "Field Pilihan", ImageButton : "Butang Bergambar", FitWindow : "Maximize the editor size", //MISSING -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Sunting Sambungan", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "Masukkan Baris", DeleteRows : "Buangkan Baris", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "Masukkan Lajur", DeleteColumns : "Buangkan Lajur", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "Masukkan Sel", DeleteCells : "Buangkan Sel-sel", MergeCells : "Cantumkan Sel-sel", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "Bahagikan Sel", TableDelete : "Delete Table", //MISSING CellProperties : "Ciri-ciri Sel", TableProperties : "Ciri-ciri Jadual", @@ -147,7 +134,7 @@ SelectionFieldProp : "Ciri-ciri Selection Field", TextareaProp : "Ciri-ciri Textarea", FormProp : "Ciri-ciri Borang", -FontFormats : "Normal;Telah Diformat;Alamat;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Perenggan (DIV)", +FontFormats : "Normal;Telah Diformat;Alamat;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Perenggan (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Memproses XHTML. Sila tunggu...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Set toolbar \"%1\" tidak wujud", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Sila pilih pautan", DlgLnkAnchorByName : "dengan menggunakan nama pautan", DlgLnkAnchorById : "dengan menggunakan ID elemen", -DlgLnkNoAnchors : "(Tiada pautan terdapat dalam dokumen ini)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Alamat E-Mail", DlgLnkEMailSubject : "Subjek Mesej", DlgLnkEMailBody : "Isi Kandungan Mesej", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Ruangan Antara Sel", DlgTableCellPad : "Tambahan Ruang Sel", DlgTableCaption : "Keterangan", DlgTableSummary : "Summary", //MISSING -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Ciri-ciri Sel", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Atas", DlgCellVerAlignMiddle : "Tengah", DlgCellVerAlignBottom : "Bawah", DlgCellVerAlignBaseline : "Garis Dasar", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Penggunaan Baris", DlgCellCollSpan : "Penggunaan Lajur", DlgCellBackColor : "Warna Latarbelakang", DlgCellBorderColor : "Warna Border", DlgCellBtnSelect : "Pilih...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Carian", DlgFindFindBtn : "Cari", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Please paste inside the following box using the keyboard (", DlgInfoTab : "Info", -DlgAlertUrl : "Vennligst skriv inn URL-en", +DlgAlertUrl : "Vennligst skriv inn URL'en", // General Dialogs Labels DlgGenNotSet : "", @@ -179,7 +165,7 @@ DlgGenId : "Id", DlgGenLangDir : "Språkretning", DlgGenLangDirLtr : "Venstre til høyre (VTH)", DlgGenLangDirRtl : "Høyre til venstre (HTV)", -DlgGenLangCode : "Språkkode", +DlgGenLangCode : "Språk kode", DlgGenAccessKey : "Aksessknapp", DlgGenName : "Navn", DlgGenTabIndex : "Tab Indeks", @@ -215,18 +201,18 @@ DlgImgAlignRight : "Høyre", DlgImgAlignTextTop : "Tekst topp", DlgImgAlignTop : "Topp", DlgImgPreview : "Forhåndsvis", -DlgImgAlertUrl : "Vennligst skriv bilde-urlen", +DlgImgAlertUrl : "Vennligst skriv bildeurlen", DlgImgLinkTab : "Lenke", // Flash Dialog -DlgFlashTitle : "Flash-egenskaper", -DlgFlashChkPlay : "Autospill", +DlgFlashTitle : "Flash Egenskaper", +DlgFlashChkPlay : "Auto Spill", DlgFlashChkLoop : "Loop", -DlgFlashChkMenu : "Slå på Flash-meny", +DlgFlashChkMenu : "Slå på Flash meny", DlgFlashScale : "Skaler", DlgFlashScaleAll : "Vis alt", DlgFlashScaleNoBorder : "Ingen ramme", -DlgFlashScaleFit : "Skaler til å passe", +DlgFlashScaleFit : "Skaler til å passeExact Fit", // Link Dialog DlgLnkWindowTitle : "Lenke", @@ -235,16 +221,16 @@ DlgLnkTargetTab : "Mål", DlgLnkType : "Lenketype", DlgLnkTypeURL : "URL", -DlgLnkTypeAnchor : "Lenke til anker i teksten", -DlgLnkTypeEMail : "E-post", +DlgLnkTypeAnchor : "Lenke til bokmerke i teksten", +DlgLnkTypeEMail : "E-Post", DlgLnkProto : "Protokoll", DlgLnkProtoOther : "", DlgLnkURL : "URL", -DlgLnkAnchorSel : "Velg et anker", +DlgLnkAnchorSel : "Velg ett anker", DlgLnkAnchorByName : "Anker etter navn", DlgLnkAnchorById : "Element etter ID", -DlgLnkNoAnchors : "(Ingen anker i dokumentet)", -DlgLnkEMail : "E-postadresse", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) +DlgLnkEMail : "E-Post Addresse", DlgLnkEMailSubject : "Meldingsemne", DlgLnkEMailBody : "Melding", DlgLnkUpload : "Last opp", @@ -254,12 +240,12 @@ DlgLnkTarget : "Mål", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nytt vindu (_blank)", -DlgLnkTargetParent : "Foreldrevindu (_parent)", +DlgLnkTargetParent : "Foreldre vindu (_parent)", DlgLnkTargetSelf : "Samme vindu (_self)", DlgLnkTargetTop : "Hele vindu (_top)", DlgLnkTargetFrameName : "Målramme", -DlgLnkPopWinName : "Navn på popup-vindus", -DlgLnkPopWinFeat : "Egenskaper for popup-vindu", +DlgLnkPopWinName : "Popup vindus navn", +DlgLnkPopWinFeat : "Popup vindus egenskaper", DlgLnkPopResize : "Endre størrelse", DlgLnkPopLocation : "Adresselinje", DlgLnkPopMenu : "Menylinje", @@ -271,18 +257,18 @@ DlgLnkPopDependent : "Avhenging (Netscape)", DlgLnkPopWidth : "Bredde", DlgLnkPopHeight : "Høyde", DlgLnkPopLeft : "Venstre posisjon", -DlgLnkPopTop : "Topp-posisjon", +DlgLnkPopTop : "Topp posisjon", DlnLnkMsgNoUrl : "Vennligst skriv inn lenkens url", DlnLnkMsgNoEMail : "Vennligst skriv inn e-postadressen", -DlnLnkMsgNoAnchor : "Vennligst velg et anker", -DlnLnkMsgInvPopName : "Popup-vinduets navn må begynne med en bokstav, og kan ikke inneholde mellomrom", +DlnLnkMsgNoAnchor : "Vennligst velg ett anker", +DlnLnkMsgInvPopName : "Popup vinduets navn må begynne med en bokstav, og kan ikke inneholde mellomrom", // Color Dialog DlgColorTitle : "Velg farge", DlgColorBtnClear : "Tøm", DlgColorHighlight : "Marker", -DlgColorSelected : "Valgt", +DlgColorSelected : "Velg", // Smiley Dialog DlgSmileyTitle : "Sett inn smil", @@ -291,7 +277,7 @@ DlgSmileyTitle : "Sett inn smil", DlgSpecialCharTitle : "Velg spesielt tegn", // Table Dialog -DlgTableTitle : "Egenskaper for tabell", +DlgTableTitle : "Tabellegenskaper", DlgTableRows : "Rader", DlgTableColumns : "Kolonner", DlgTableBorder : "Rammestørrelse", @@ -301,23 +287,18 @@ DlgTableAlignLeft : "Venstre", DlgTableAlignCenter : "Midtjuster", DlgTableAlignRight : "Høyre", DlgTableWidth : "Bredde", -DlgTableWidthPx : "piksler", +DlgTableWidthPx : "pixler", DlgTableWidthPc : "prosent", DlgTableHeight : "Høyde", -DlgTableCellSpace : "Cellemarg", -DlgTableCellPad : "Cellepolstring", +DlgTableCellSpace : "Celle marg", +DlgTableCellPad : "Celle polstring", DlgTableCaption : "Tittel", DlgTableSummary : "Sammendrag", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog -DlgCellTitle : "Celleegenskaper", +DlgCellTitle : "Celle egenskaper", DlgCellWidth : "Bredde", -DlgCellWidthPx : "piksler", +DlgCellWidthPx : "pixeler", DlgCellWidthPc : "prosent", DlgCellHeight : "Høyde", DlgCellWordWrap : "Tekstbrytning", @@ -335,43 +316,38 @@ DlgCellVerAlignTop : "Topp", DlgCellVerAlignMiddle : "Midten", DlgCellVerAlignBottom : "Bunn", DlgCellVerAlignBaseline : "Bunnlinje", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Radspenn", DlgCellCollSpan : "Kolonnespenn", DlgCellBackColor : "Bakgrunnsfarge", DlgCellBorderColor : "Rammefarge", DlgCellBtnSelect : "Velg...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Søk og erstatt", - // Find Dialog -DlgFindTitle : "Søk", -DlgFindFindBtn : "Søk", -DlgFindNotFoundMsg : "Fant ikke søketeksten.", +DlgFindTitle : "Finn", +DlgFindFindBtn : "Finn", +DlgFindNotFoundMsg : "Den spesifiserte teksten ble ikke funnet.", // Replace Dialog DlgReplaceTitle : "Erstatt", -DlgReplaceFindLbl : "Søk etter:", +DlgReplaceFindLbl : "Finn hva:", DlgReplaceReplaceLbl : "Erstatt med:", -DlgReplaceCaseChk : "Skill mellom store og små bokstaver", +DlgReplaceCaseChk : "Riktig case", DlgReplaceReplaceBtn : "Erstatt", DlgReplaceReplAllBtn : "Erstatt alle", -DlgReplaceWordChk : "Bare hele ord", +DlgReplaceWordChk : "Finn hele ordet", // Paste Operations / Dialog -PasteErrorCut : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst bruk snareveien (Ctrl+X).", -PasteErrorCopy : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst bruk snareveien (Ctrl+C).", +PasteErrorCut : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst brukt snareveien (Ctrl+X).", +PasteErrorCopy : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst brukt snareveien (Ctrl+C).", PasteAsText : "Lim inn som ren tekst", -PasteFromWord : "Lim inn fra Word", +PasteFromWord : "Lim inn fra word", DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (Ctrl+V) og trykk OK.", -DlgPasteSec : "Din nettlesers sikkerhetsinstillinger gir ikke redigeringsverktøyet direkte tilgang til utklippstavlen. Du må lime det igjen i dette vinduet.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Fjern skrifttyper", DlgPasteRemoveStyles : "Fjern stildefinisjoner", +DlgPasteCleanBox : "Tøm boksen", // Color Picker ColorAutomatic : "Automatisk", @@ -393,17 +369,17 @@ DlgSpellBtnIgnoreAll : "Ignorer alle", DlgSpellBtnReplace : "Erstatt", DlgSpellBtnReplaceAll : "Erstatt alle", DlgSpellBtnUndo : "Angre", -DlgSpellNoSuggestions : "- Ingen forslag -", +DlgSpellNoSuggestions : "- ingen forslag -", DlgSpellProgress : "Stavekontroll pågår...", DlgSpellNoMispell : "Stavekontroll fullført: ingen feilstavinger funnet", DlgSpellNoChanges : "Stavekontroll fullført: ingen ord endret", DlgSpellOneChange : "Stavekontroll fullført: Ett ord endret", DlgSpellManyChanges : "Stavekontroll fullført: %1 ord endret", -IeSpellDownload : "Stavekontroll er ikke installert. Vil du laste den ned nå?", +IeSpellDownload : "Stavekontroll ikke installert, vil du laste den ned nå?", // Button Dialog -DlgButtonText : "Tekst (verdi)", +DlgButtonText : "Tekst", DlgButtonType : "Type", DlgButtonTypeBtn : "Knapp", DlgButtonTypeSbm : "Send", @@ -442,7 +418,7 @@ DlgTextareaRows : "Rader", // Text Field Dialog DlgTextName : "Navn", -DlgTextValue : "Verdi", +DlgTextValue : "verdi", DlgTextCharWidth : "Tegnbredde", DlgTextMaxChars : "Maks antall tegn", DlgTextType : "Type", @@ -454,24 +430,24 @@ DlgHiddenName : "Navn", DlgHiddenValue : "Verdi", // Bulleted List Dialog -BulletedListProp : "Egenskaper for uordnet liste", -NumberedListProp : "Egenskaper for ordnet liste", +BulletedListProp : "Uordnet listeegenskaper", +NumberedListProp : "Ordnet listeegenskaper", DlgLstStart : "Start", DlgLstType : "Type", DlgLstTypeCircle : "Sirkel", DlgLstTypeDisc : "Hel sirkel", DlgLstTypeSquare : "Firkant", -DlgLstTypeNumbers : "Numre (1, 2, 3)", +DlgLstTypeNumbers : "Numre(1, 2, 3)", DlgLstTypeLCase : "Små bokstaver (a, b, c)", -DlgLstTypeUCase : "Store bokstaver (A, B, C)", -DlgLstTypeSRoman : "Små romerske tall (i, ii, iii)", -DlgLstTypeLRoman : "Store romerske tall (I, II, III)", +DlgLstTypeUCase : "Store bokstaver(A, B, C)", +DlgLstTypeSRoman : "Små romerske tall(i, ii, iii)", +DlgLstTypeLRoman : "Store romerske tall(I, II, III)", // Document Properties Dialog -DlgDocGeneralTab : "Generelt", +DlgDocGeneralTab : "Generalt", DlgDocBackTab : "Bakgrunn", DlgDocColorsTab : "Farger og marginer", -DlgDocMetaTab : "Meta-data", +DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Sidetittel", DlgDocLangDir : "Språkretning", @@ -486,16 +462,16 @@ DlgDocCharSetGR : "Gresk", DlgDocCharSetJP : "Japansk", DlgDocCharSetKR : "Koreansk", DlgDocCharSetTR : "Tyrkisk", -DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetUN : "Unikode (UTF-8)", DlgDocCharSetWE : "Vesteuropeisk", DlgDocCharSetOther : "Annet tegnsett", DlgDocDocType : "Dokumenttype header", DlgDocDocTypeOther : "Annet dokumenttype header", -DlgDocIncXHTML : "Inkluder XHTML-deklarasjon", +DlgDocIncXHTML : "Inkulder XHTML deklarasjon", DlgDocBgColor : "Bakgrunnsfarge", -DlgDocBgImage : "URL for bakgrunnsbilde", -DlgDocBgNoScroll : "Lås bakgrunnsbilde", +DlgDocBgImage : "Bakgrunnsbilde url", +DlgDocBgNoScroll : "Ikke scroll bakgrunnsbilde", DlgDocCText : "Tekst", DlgDocCLink : "Link", DlgDocCVisited : "Besøkt lenke", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Om", DlgAboutBrowserInfoTab : "Nettleserinfo", DlgAboutLicenseTab : "Lisens", DlgAboutVersion : "versjon", -DlgAboutInfo : "For mer informasjon, se", - -// Div Dialog -DlgDivGeneralTab : "Generelt", -DlgDivAdvancedTab : "Avansert", -DlgDivStyle : "Stil", -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "For further information go to" //MISSING +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/nl.js b/httemplate/elements/fckeditor/editor/lang/nl.js index f84f1a607..f6b26b411 100644 --- a/httemplate/elements/fckeditor/editor/lang/nl.js +++ b/httemplate/elements/fckeditor/editor/lang/nl.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Opmaak verwijderen", InsertLinkLbl : "Link", InsertLink : "Link invoegen/wijzigen", RemoveLink : "Link verwijderen", -VisitLink : "Link volgen", Anchor : "Interne link", -AnchorDelete : "Anker verwijderen", InsertImageLbl : "Afbeelding", InsertImage : "Afbeelding invoegen/wijzigen", InsertFlashLbl : "Flash", @@ -54,7 +52,7 @@ InsertFlash : "Flash invoegen/wijzigen", InsertTableLbl : "Tabel", InsertTable : "Tabel invoegen/wijzigen", InsertLineLbl : "Lijn", -InsertLine : "Horizontale lijn invoegen", +InsertLine : "Invoegen horizontale lijn", InsertSpecialCharLbl: "Speciale tekens", InsertSpecialChar : "Speciaal teken invoegen", InsertSmileyLbl : "Smiley", @@ -72,10 +70,6 @@ RightJustify : "Rechts uitlijnen", BlockJustify : "Uitvullen", DecreaseIndent : "Inspringen verkleinen", IncreaseIndent : "Inspringen vergroten", -Blockquote : "Citaatblok", -CreateDiv : "DIV aanmaken", -EditDiv : "DIV wijzigen", -DeleteDiv : "DIV verwijderen", Undo : "Ongedaan maken", Redo : "Opnieuw uitvoeren", NumberedListLbl : "Genummerde lijst", @@ -109,27 +103,20 @@ SelectionField : "Selectieveld", ImageButton : "Afbeeldingsknop", FitWindow : "De editor maximaliseren", -ShowBlocks : "Toon blokken", // Context Menu EditLink : "Link wijzigen", CellCM : "Cel", RowCM : "Rij", ColumnCM : "Kolom", -InsertRowAfter : "Voeg rij in achter", -InsertRowBefore : "Voeg rij in voor", +InsertRow : "Rij invoegen", DeleteRows : "Rijen verwijderen", -InsertColumnAfter : "Voeg kolom in achter", -InsertColumnBefore : "Voeg kolom in voor", +InsertColumn : "Kolom invoegen", DeleteColumns : "Kolommen verwijderen", -InsertCellAfter : "Voeg cel in achter", -InsertCellBefore : "Voeg cel in voor", +InsertCell : "Cel", DeleteCells : "Cellen verwijderen", MergeCells : "Cellen samenvoegen", -MergeRight : "Voeg samen naar rechts", -MergeDown : "Voeg samen naar beneden", -HorizontalSplitCell : "Splits cellen horizontaal", -VerticalSplitCell : "Splits cellen verticaal", +SplitCell : "Cellen splitsen", TableDelete : "Tabel verwijderen", CellProperties : "Eigenschappen cel", TableProperties : "Eigenschappen tabel", @@ -147,21 +134,20 @@ SelectionFieldProp : "Eigenschappen selectieveld", TextareaProp : "Eigenschappen tekstvak", FormProp : "Eigenschappen formulier", -FontFormats : "Normaal;Met opmaak;Adres;Kop 1;Kop 2;Kop 3;Kop 4;Kop 5;Kop 6;Normaal (DIV)", +FontFormats : "Normaal;Met opmaak;Adres;Kop 1;Kop 2;Kop 3;Kop 4;Kop 5;Kop 6;Normaal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Bezig met verwerken XHTML. Even geduld aub...", Done : "Klaar", -PasteWordConfirm : "De tekst die u plakte lijkt gekopieerd te zijn vanuit Word. Wilt u de tekst opschonen voordat deze geplakt wordt?", -NotCompatiblePaste : "Deze opdracht is beschikbaar voor Internet Explorer versie 5.5 of hoger. Wilt u plakken zonder op te schonen?", +PasteWordConfirm : "De tekst die je plakte lijkt gekopieerd uit te zijn Word. Wil je de tekst opschonen voordat deze geplakt wordt?", +NotCompatiblePaste : "Deze opdracht is beschikbaar voor Internet Explorer versie 5.5 of hoger. Wil je plakken zonder op te schonen?", UnknownToolbarItem : "Onbekend item op menubalk \"%1\"", UnknownCommand : "Onbekende opdrachtnaam: \"%1\"", NotImplemented : "Opdracht niet geïmplementeerd.", UnknownToolbarSet : "Menubalk \"%1\" bestaat niet.", -NoActiveX : "De beveilingsinstellingen van uw browser zouden sommige functies van de editor kunnen beperken. De optie \"Activeer ActiveX-elementen en plug-ins\" dient ingeschakeld te worden. Het kan zijn dat er nu functies ontbreken of niet werken.", +NoActiveX : "De beveilingsinstellingen van je browser zouden sommige functies van de editor kunnen beperken. De optie \"Activeer ActiveX-elementen en plug-ins\" dient ingeschakeld te worden. Het kan zijn dat er nu functies ontbreken of niet werken.", BrowseServerBlocked : "De bestandsbrowser kon niet geopend worden. Zorg ervoor dat pop-up-blokkeerders uit staan.", DialogBlocked : "Kan het dialoogvenster niet weergeven. Zorg ervoor dat pop-up-blokkeerders uit staan.", -VisitLinkBlocked : "Het was niet mogelijk een nieuw venster te openen. Controleer of er geen pop-up-blocker aktief is.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Kies een interne link", DlgLnkAnchorByName : "Op naam interne link", DlgLnkAnchorById : "Op kenmerk interne link", -DlgLnkNoAnchors : "(Geen interne links in document gevonden)", +DlgLnkNoAnchors : "(Geen interne links in document gevonden)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-mailadres", DlgLnkEMailSubject : "Onderwerp bericht", DlgLnkEMailBody : "Inhoud bericht", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Afstand tussen cellen", DlgTableCellPad : "Afstand vanaf rand cel", DlgTableCaption : "Naam", DlgTableSummary : "Samenvatting", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Eigenschappen cel", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Boven", DlgCellVerAlignMiddle : "Midden", DlgCellVerAlignBottom : "Beneden", DlgCellVerAlignBaseline : "Basislijn", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Overkoepeling rijen", DlgCellCollSpan : "Overkoepeling kolommen", DlgCellBackColor : "Achtergrondkleur", DlgCellBorderColor : "Randkleur", DlgCellBtnSelect : "Selecteren...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Zoeken en vervangen", - // Find Dialog DlgFindTitle : "Zoeken", DlgFindFindBtn : "Zoeken", @@ -368,10 +343,11 @@ PasteErrorCopy : "De beveiligingsinstelling van de browser verhinderen het autom PasteAsText : "Plakken als platte tekst", PasteFromWord : "Plakken als Word-gegevens", -DlgPasteMsg2 : "Plak de tekst in het volgende vak gebruik makend van uw toetsenbord (Ctrl+V) en klik op OK.", -DlgPasteSec : "Door de beveiligingsinstellingen van uw browser is het niet mogelijk om direct vanuit het klembord in de editor te plakken. Middels opnieuw plakken in dit venster kunt u de tekst alsnog plakken in de editor.", +DlgPasteMsg2 : "Plak de tekst in het volgende vak gebruik makend van je toetstenbord (Ctrl+V) en klik op OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Negeer \"Font Face\"-definities", DlgPasteRemoveStyles : "Verwijder \"Style\"-definities", +DlgPasteCleanBox : "Vak opschonen", // Color Picker ColorAutomatic : "Automatisch", @@ -400,7 +376,7 @@ DlgSpellNoChanges : "Klaar met spellingscontrole: geen woorden aangepast", DlgSpellOneChange : "Klaar met spellingscontrole: één woord aangepast", DlgSpellManyChanges : "Klaar met spellingscontrole: %1 woorden aangepast", -IeSpellDownload : "De spellingscontrole niet geïnstalleerd. Wilt u deze nu downloaden?", +IeSpellDownload : "De spellingscontrole niet geïnstalleerd. Wil je deze nu downloaden?", // Button Dialog DlgButtonText : "Tekst (waarde)", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Over", DlgAboutBrowserInfoTab : "Browserinformatie", DlgAboutLicenseTab : "Licentie", DlgAboutVersion : "Versie", -DlgAboutInfo : "Voor meer informatie ga naar ", - -// Div Dialog -DlgDivGeneralTab : "Algemeen", -DlgDivAdvancedTab : "Geavanceerd", -DlgDivStyle : "Style", -DlgDivInlineStyle : "Inline Style", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Voor meer informatie ga naar " +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/no.js b/httemplate/elements/fckeditor/editor/lang/no.js index 9809bda0b..d3b237d57 100644 --- a/httemplate/elements/fckeditor/editor/lang/no.js +++ b/httemplate/elements/fckeditor/editor/lang/no.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Fjern format", InsertLinkLbl : "Lenke", InsertLink : "Sett inn/Rediger lenke", RemoveLink : "Fjern lenke", -VisitLink : "Åpne lenke", Anchor : "Sett inn/Rediger anker", -AnchorDelete : "Fjern anker", InsertImageLbl : "Bilde", InsertImage : "Sett inn/Rediger bilde", InsertFlashLbl : "Flash", @@ -72,14 +70,10 @@ RightJustify : "Høyrejuster", BlockJustify : "Blokkjuster", DecreaseIndent : "Senk nivå", IncreaseIndent : "Øk nivå", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Angre", Redo : "Gjør om", -NumberedListLbl : "Nummerert liste", -NumberedList : "Sett inn/Fjern nummerert liste", +NumberedListLbl : "Numrert liste", +NumberedList : "Sett inn/Fjern numrert liste", BulletedListLbl : "Uordnet liste", BulletedList : "Sett inn/Fjern uordnet liste", ShowTableBorders : "Vis tabellrammer", @@ -91,7 +85,7 @@ FontSize : "Størrelse", TextColor : "Tekstfarge", BGColor : "Bakgrunnsfarge", Source : "Kilde", -Find : "Søk", +Find : "Finn", Replace : "Erstatt", SpellCheck : "Stavekontroll", UniversalKeyboard : "Universelt tastatur", @@ -99,69 +93,61 @@ PageBreakLbl : "Sideskift", PageBreak : "Sett inn sideskift", Form : "Skjema", -Checkbox : "Avmerkingsboks", -RadioButton : "Alternativknapp", -TextField : "Tekstboks", +Checkbox : "Sjekkboks", +RadioButton : "Radioknapp", +TextField : "Tekstfelt", Textarea : "Tekstområde", HiddenField : "Skjult felt", Button : "Knapp", -SelectionField : "Rullegardinliste", +SelectionField : "Dropdown meny", ImageButton : "Bildeknapp", FitWindow : "Maksimer størrelsen på redigeringsverktøyet", -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Rediger lenke", CellCM : "Celle", RowCM : "Rader", ColumnCM : "Kolonne", -InsertRowAfter : "Sett inn rad etter", -InsertRowBefore : "Sett inn rad før", +InsertRow : "Sett inn rad", DeleteRows : "Slett rader", -InsertColumnAfter : "Sett inn kolonne etter", -InsertColumnBefore : "Sett inn kolonne før", +InsertColumn : "Sett inn kolonne", DeleteColumns : "Slett kolonner", -InsertCellAfter : "Sett inn celle etter", -InsertCellBefore : "Sett inn celle før", +InsertCell : "Sett inn celle", DeleteCells : "Slett celler", MergeCells : "Slå sammen celler", -MergeRight : "Slå sammen høyre", -MergeDown : "Slå sammen ned", -HorizontalSplitCell : "Del celle horisontalt", -VerticalSplitCell : "Del celle vertikalt", +SplitCell : "Splitt celler", TableDelete : "Slett tabell", -CellProperties : "Egenskaper for celle", -TableProperties : "Egenskaper for tabell", -ImageProperties : "Egenskaper for bilde", -FlashProperties : "Egenskaper for Flash-objekt", - -AnchorProp : "Egenskaper for anker", -ButtonProp : "Egenskaper for knapp", -CheckboxProp : "Egenskaper for avmerkingsboks", -HiddenFieldProp : "Egenskaper for skjult felt", -RadioButtonProp : "Egenskaper for alternativknapp", -ImageButtonProp : "Egenskaper for bildeknapp", -TextFieldProp : "Egenskaper for tekstfelt", -SelectionFieldProp : "Egenskaper for rullegardinliste", -TextareaProp : "Egenskaper for tekstområde", -FormProp : "Egenskaper for skjema", - -FontFormats : "Normal;Formatert;Adresse;Tittel 1;Tittel 2;Tittel 3;Tittel 4;Tittel 5;Tittel 6;Normal (DIV)", +CellProperties : "Celleegenskaper", +TableProperties : "Tabellegenskaper", +ImageProperties : "Bildeegenskaper", +FlashProperties : "Flash Egenskaper", + +AnchorProp : "Ankeregenskaper", +ButtonProp : "Knappegenskaper", +CheckboxProp : "Sjekkboksegenskaper", +HiddenFieldProp : "Skjult felt egenskaper", +RadioButtonProp : "Radioknappegenskaper", +ImageButtonProp : "Bildeknappegenskaper", +TextFieldProp : "Tekstfeltegenskaper", +SelectionFieldProp : "Dropdown menyegenskaper", +TextareaProp : "Tekstfeltegenskaper", +FormProp : "Skjemaegenskaper", + +FontFormats : "Normal;Formatert;Adresse;Tittel 1;Tittel 2;Tittel 3;Tittel 4;Tittel 5;Tittel 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Lager XHTML. Vennligst vent...", Done : "Ferdig", -PasteWordConfirm : "Teksten du prøver å lime inn ser ut som om den kommer fra Word. Vil du rense den for unødvendig kode før du limer inn?", -NotCompatiblePaste : "Denne kommandoen er kun tilgjenglig for Internet Explorer versjon 5.5 eller bedre. Vil du fortsette uten å rense? (Du kan lime inn som ren tekst)", +PasteWordConfirm : "Teksten du prøver å lime inn ser ut som om den kommer fra word , du bør rense den før du limer inn , vil du gjøre dette?", +NotCompatiblePaste : "Denne kommandoen er tilgjenglig kun for Internet Explorer version 5.5 eller bedre. Vil du fortsette uten å rense?(Du kan lime inn som ren tekst)", UnknownToolbarItem : "Ukjent menyvalg \"%1\"", UnknownCommand : "Ukjent kommando \"%1\"", -NotImplemented : "Kommando ikke implimentert", +NotImplemented : "Kommando ikke ennå implimentert", UnknownToolbarSet : "Verktøylinjesett \"%1\" finnes ikke", -NoActiveX : "Din nettlesers sikkerhetsinstillinger kan begrense noen av funksjonene i redigeringsverktøyet. Du må aktivere \"Kjør ActiveX-kontroller og plugin-modeller\". Du kan oppleve feil og advarsler om manglende funksjoner", -BrowseServerBlocked : "Kunne ikke åpne dialogboksen for filarkiv. Sjekk at popup-blokkering er deaktivert.", -DialogBlocked : "Kunne ikke åpne dialogboksen. Sjekk at popup-blokkering er deaktivert.", -VisitLinkBlocked : "Kunne ikke åpne et nytt vindu. Sjekk at popup-blokkering er deaktivert.", +NoActiveX : "Din nettleser's sikkerhetsinstillinger kan begrense noen av funksjonene i redigeringsverktøyet. Du må aktivere \"Kjør ActiveXkontroller og plugins\". Du kan oppleve feil og advarsler om manglende funksjoner", +BrowseServerBlocked : "Kunne ikke åpne dialogboksen for filarkiv. Pass på at du har slått av popupstoppere.", +DialogBlocked : "Kunne ikke åpne dialogboksen. Pass på at du har slått av popupstoppere.", // Dialogs DlgBtnOK : "OK", @@ -171,7 +157,7 @@ DlgBtnBrowseServer : "Bla igjennom server", DlgAdvancedTag : "Avansert", DlgOpOther : "", DlgInfoTab : "Info", -DlgAlertUrl : "Vennligst skriv inn URL-en", +DlgAlertUrl : "Vennligst skriv inn URL'en", // General Dialogs Labels DlgGenNotSet : "", @@ -179,7 +165,7 @@ DlgGenId : "Id", DlgGenLangDir : "Språkretning", DlgGenLangDirLtr : "Venstre til høyre (VTH)", DlgGenLangDirRtl : "Høyre til venstre (HTV)", -DlgGenLangCode : "Språkkode", +DlgGenLangCode : "Språk kode", DlgGenAccessKey : "Aksessknapp", DlgGenName : "Navn", DlgGenTabIndex : "Tab Indeks", @@ -215,18 +201,18 @@ DlgImgAlignRight : "Høyre", DlgImgAlignTextTop : "Tekst topp", DlgImgAlignTop : "Topp", DlgImgPreview : "Forhåndsvis", -DlgImgAlertUrl : "Vennligst skriv bilde-urlen", +DlgImgAlertUrl : "Vennligst skriv bildeurlen", DlgImgLinkTab : "Lenke", // Flash Dialog -DlgFlashTitle : "Flash-egenskaper", -DlgFlashChkPlay : "Autospill", +DlgFlashTitle : "Flash Egenskaper", +DlgFlashChkPlay : "Auto Spill", DlgFlashChkLoop : "Loop", -DlgFlashChkMenu : "Slå på Flash-meny", +DlgFlashChkMenu : "Slå på Flash meny", DlgFlashScale : "Skaler", DlgFlashScaleAll : "Vis alt", DlgFlashScaleNoBorder : "Ingen ramme", -DlgFlashScaleFit : "Skaler til å passe", +DlgFlashScaleFit : "Skaler til å passeExact Fit", // Link Dialog DlgLnkWindowTitle : "Lenke", @@ -235,16 +221,16 @@ DlgLnkTargetTab : "Mål", DlgLnkType : "Lenketype", DlgLnkTypeURL : "URL", -DlgLnkTypeAnchor : "Lenke til anker i teksten", -DlgLnkTypeEMail : "E-post", +DlgLnkTypeAnchor : "Lenke til bokmerke i teksten", +DlgLnkTypeEMail : "E-Post", DlgLnkProto : "Protokoll", DlgLnkProtoOther : "", DlgLnkURL : "URL", -DlgLnkAnchorSel : "Velg et anker", +DlgLnkAnchorSel : "Velg ett anker", DlgLnkAnchorByName : "Anker etter navn", DlgLnkAnchorById : "Element etter ID", -DlgLnkNoAnchors : "(Ingen anker i dokumentet)", -DlgLnkEMail : "E-postadresse", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) +DlgLnkEMail : "E-Post Addresse", DlgLnkEMailSubject : "Meldingsemne", DlgLnkEMailBody : "Melding", DlgLnkUpload : "Last opp", @@ -254,12 +240,12 @@ DlgLnkTarget : "Mål", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nytt vindu (_blank)", -DlgLnkTargetParent : "Foreldrevindu (_parent)", +DlgLnkTargetParent : "Foreldre vindu (_parent)", DlgLnkTargetSelf : "Samme vindu (_self)", DlgLnkTargetTop : "Hele vindu (_top)", DlgLnkTargetFrameName : "Målramme", -DlgLnkPopWinName : "Navn på popup-vindus", -DlgLnkPopWinFeat : "Egenskaper for popup-vindu", +DlgLnkPopWinName : "Popup vindus navn", +DlgLnkPopWinFeat : "Popup vindus egenskaper", DlgLnkPopResize : "Endre størrelse", DlgLnkPopLocation : "Adresselinje", DlgLnkPopMenu : "Menylinje", @@ -271,18 +257,18 @@ DlgLnkPopDependent : "Avhenging (Netscape)", DlgLnkPopWidth : "Bredde", DlgLnkPopHeight : "Høyde", DlgLnkPopLeft : "Venstre posisjon", -DlgLnkPopTop : "Topp-posisjon", +DlgLnkPopTop : "Topp posisjon", DlnLnkMsgNoUrl : "Vennligst skriv inn lenkens url", DlnLnkMsgNoEMail : "Vennligst skriv inn e-postadressen", -DlnLnkMsgNoAnchor : "Vennligst velg et anker", -DlnLnkMsgInvPopName : "Popup-vinduets navn må begynne med en bokstav, og kan ikke inneholde mellomrom", +DlnLnkMsgNoAnchor : "Vennligst velg ett anker", +DlnLnkMsgInvPopName : "Popup vinduets navn må begynne med en bokstav, og kan ikke inneholde mellomrom", // Color Dialog DlgColorTitle : "Velg farge", DlgColorBtnClear : "Tøm", DlgColorHighlight : "Marker", -DlgColorSelected : "Valgt", +DlgColorSelected : "Velg", // Smiley Dialog DlgSmileyTitle : "Sett inn smil", @@ -291,7 +277,7 @@ DlgSmileyTitle : "Sett inn smil", DlgSpecialCharTitle : "Velg spesielt tegn", // Table Dialog -DlgTableTitle : "Egenskaper for tabell", +DlgTableTitle : "Tabellegenskaper", DlgTableRows : "Rader", DlgTableColumns : "Kolonner", DlgTableBorder : "Rammestørrelse", @@ -301,23 +287,18 @@ DlgTableAlignLeft : "Venstre", DlgTableAlignCenter : "Midtjuster", DlgTableAlignRight : "Høyre", DlgTableWidth : "Bredde", -DlgTableWidthPx : "piksler", +DlgTableWidthPx : "pixler", DlgTableWidthPc : "prosent", DlgTableHeight : "Høyde", -DlgTableCellSpace : "Cellemarg", -DlgTableCellPad : "Cellepolstring", +DlgTableCellSpace : "Celle marg", +DlgTableCellPad : "Celle polstring", DlgTableCaption : "Tittel", DlgTableSummary : "Sammendrag", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog -DlgCellTitle : "Celleegenskaper", +DlgCellTitle : "Celle egenskaper", DlgCellWidth : "Bredde", -DlgCellWidthPx : "piksler", +DlgCellWidthPx : "pixeler", DlgCellWidthPc : "prosent", DlgCellHeight : "Høyde", DlgCellWordWrap : "Tekstbrytning", @@ -335,43 +316,38 @@ DlgCellVerAlignTop : "Topp", DlgCellVerAlignMiddle : "Midten", DlgCellVerAlignBottom : "Bunn", DlgCellVerAlignBaseline : "Bunnlinje", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Radspenn", DlgCellCollSpan : "Kolonnespenn", DlgCellBackColor : "Bakgrunnsfarge", DlgCellBorderColor : "Rammefarge", DlgCellBtnSelect : "Velg...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Søk og erstatt", - // Find Dialog -DlgFindTitle : "Søk", -DlgFindFindBtn : "Søk", -DlgFindNotFoundMsg : "Fant ikke søketeksten.", +DlgFindTitle : "Finn", +DlgFindFindBtn : "Finn", +DlgFindNotFoundMsg : "Den spesifiserte teksten ble ikke funnet.", // Replace Dialog DlgReplaceTitle : "Erstatt", -DlgReplaceFindLbl : "Søk etter:", +DlgReplaceFindLbl : "Finn hva:", DlgReplaceReplaceLbl : "Erstatt med:", -DlgReplaceCaseChk : "Skill mellom store og små bokstaver", +DlgReplaceCaseChk : "Riktig case", DlgReplaceReplaceBtn : "Erstatt", DlgReplaceReplAllBtn : "Erstatt alle", -DlgReplaceWordChk : "Bare hele ord", +DlgReplaceWordChk : "Finn hele ordet", // Paste Operations / Dialog -PasteErrorCut : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst bruk snareveien (Ctrl+X).", -PasteErrorCopy : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst bruk snareveien (Ctrl+C).", +PasteErrorCut : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst brukt snareveien (Ctrl+X).", +PasteErrorCopy : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst brukt snareveien (Ctrl+C).", PasteAsText : "Lim inn som ren tekst", -PasteFromWord : "Lim inn fra Word", +PasteFromWord : "Lim inn fra word", DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (Ctrl+V) og trykk OK.", -DlgPasteSec : "Din nettlesers sikkerhetsinstillinger gir ikke redigeringsverktøyet direkte tilgang til utklippstavlen. Du må lime det igjen i dette vinduet.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Fjern skrifttyper", DlgPasteRemoveStyles : "Fjern stildefinisjoner", +DlgPasteCleanBox : "Tøm boksen", // Color Picker ColorAutomatic : "Automatisk", @@ -393,17 +369,17 @@ DlgSpellBtnIgnoreAll : "Ignorer alle", DlgSpellBtnReplace : "Erstatt", DlgSpellBtnReplaceAll : "Erstatt alle", DlgSpellBtnUndo : "Angre", -DlgSpellNoSuggestions : "- Ingen forslag -", +DlgSpellNoSuggestions : "- ingen forslag -", DlgSpellProgress : "Stavekontroll pågår...", DlgSpellNoMispell : "Stavekontroll fullført: ingen feilstavinger funnet", DlgSpellNoChanges : "Stavekontroll fullført: ingen ord endret", DlgSpellOneChange : "Stavekontroll fullført: Ett ord endret", DlgSpellManyChanges : "Stavekontroll fullført: %1 ord endret", -IeSpellDownload : "Stavekontroll er ikke installert. Vil du laste den ned nå?", +IeSpellDownload : "Stavekontroll ikke installert, vil du laste den ned nå?", // Button Dialog -DlgButtonText : "Tekst (verdi)", +DlgButtonText : "Tekst", DlgButtonType : "Type", DlgButtonTypeBtn : "Knapp", DlgButtonTypeSbm : "Send", @@ -442,7 +418,7 @@ DlgTextareaRows : "Rader", // Text Field Dialog DlgTextName : "Navn", -DlgTextValue : "Verdi", +DlgTextValue : "verdi", DlgTextCharWidth : "Tegnbredde", DlgTextMaxChars : "Maks antall tegn", DlgTextType : "Type", @@ -454,24 +430,24 @@ DlgHiddenName : "Navn", DlgHiddenValue : "Verdi", // Bulleted List Dialog -BulletedListProp : "Egenskaper for uordnet liste", -NumberedListProp : "Egenskaper for ordnet liste", +BulletedListProp : "Uordnet listeegenskaper", +NumberedListProp : "Ordnet listeegenskaper", DlgLstStart : "Start", DlgLstType : "Type", DlgLstTypeCircle : "Sirkel", DlgLstTypeDisc : "Hel sirkel", DlgLstTypeSquare : "Firkant", -DlgLstTypeNumbers : "Numre (1, 2, 3)", +DlgLstTypeNumbers : "Numre(1, 2, 3)", DlgLstTypeLCase : "Små bokstaver (a, b, c)", -DlgLstTypeUCase : "Store bokstaver (A, B, C)", -DlgLstTypeSRoman : "Små romerske tall (i, ii, iii)", -DlgLstTypeLRoman : "Store romerske tall (I, II, III)", +DlgLstTypeUCase : "Store bokstaver(A, B, C)", +DlgLstTypeSRoman : "Små romerske tall(i, ii, iii)", +DlgLstTypeLRoman : "Store romerske tall(I, II, III)", // Document Properties Dialog -DlgDocGeneralTab : "Generelt", +DlgDocGeneralTab : "Generalt", DlgDocBackTab : "Bakgrunn", DlgDocColorsTab : "Farger og marginer", -DlgDocMetaTab : "Meta-data", +DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Sidetittel", DlgDocLangDir : "Språkretning", @@ -486,16 +462,16 @@ DlgDocCharSetGR : "Gresk", DlgDocCharSetJP : "Japansk", DlgDocCharSetKR : "Koreansk", DlgDocCharSetTR : "Tyrkisk", -DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetUN : "Unikode (UTF-8)", DlgDocCharSetWE : "Vesteuropeisk", DlgDocCharSetOther : "Annet tegnsett", DlgDocDocType : "Dokumenttype header", DlgDocDocTypeOther : "Annet dokumenttype header", -DlgDocIncXHTML : "Inkluder XHTML-deklarasjon", +DlgDocIncXHTML : "Inkulder XHTML deklarasjon", DlgDocBgColor : "Bakgrunnsfarge", -DlgDocBgImage : "URL for bakgrunnsbilde", -DlgDocBgNoScroll : "Lås bakgrunnsbilde", +DlgDocBgImage : "Bakgrunnsbilde url", +DlgDocBgNoScroll : "Ikke scroll bakgrunnsbilde", DlgDocCText : "Tekst", DlgDocCLink : "Link", DlgDocCVisited : "Besøkt lenke", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Om", DlgAboutBrowserInfoTab : "Nettleserinfo", DlgAboutLicenseTab : "Lisens", DlgAboutVersion : "versjon", -DlgAboutInfo : "For mer informasjon, se", - -// Div Dialog -DlgDivGeneralTab : "Generelt", -DlgDivAdvancedTab : "Avansert", -DlgDivStyle : "Stil", -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "For further information go to" //MISSING +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/pl.js b/httemplate/elements/fckeditor/editor/lang/pl.js index 5708832b0..f01994dcd 100644 --- a/httemplate/elements/fckeditor/editor/lang/pl.js +++ b/httemplate/elements/fckeditor/editor/lang/pl.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Usuń formatowanie", InsertLinkLbl : "Hiperłącze", InsertLink : "Wstaw/edytuj hiperłącze", RemoveLink : "Usuń hiperłącze", -VisitLink : "Open Link", //MISSING Anchor : "Wstaw/edytuj kotwicę", -AnchorDelete : "Usuń kotwicę", InsertImageLbl : "Obrazek", InsertImage : "Wstaw/edytuj obrazek", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Wyrównaj do prawej", BlockJustify : "Wyrównaj do lewej i prawej", DecreaseIndent : "Zmniejsz wcięcie", IncreaseIndent : "Zwiększ wcięcie", -Blockquote : "Cytat", -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Cofnij", Redo : "Ponów", NumberedListLbl : "Lista numerowana", @@ -99,37 +93,30 @@ PageBreakLbl : "Odstęp", PageBreak : "Wstaw odstęp", Form : "Formularz", -Checkbox : "Pole wyboru (checkbox)", -RadioButton : "Pole wyboru (radio)", +Checkbox : "Checkbox", +RadioButton : "Pole wyboru", TextField : "Pole tekstowe", Textarea : "Obszar tekstowy", HiddenField : "Pole ukryte", Button : "Przycisk", SelectionField : "Lista wyboru", -ImageButton : "Przycisk-obrazek", +ImageButton : "Przycisk obrazek", FitWindow : "Maksymalizuj rozmiar edytora", -ShowBlocks : "Pokaż bloki", // Context Menu EditLink : "Edytuj hiperłącze", CellCM : "Komórka", RowCM : "Wiersz", ColumnCM : "Kolumna", -InsertRowAfter : "Wstaw wiersz poniżej", -InsertRowBefore : "Wstaw wiersz powyżej", +InsertRow : "Wstaw wiersz", DeleteRows : "Usuń wiersze", -InsertColumnAfter : "Wstaw kolumnę z prawej", -InsertColumnBefore : "Wstaw kolumnę z lewej", +InsertColumn : "Wstaw kolumnę", DeleteColumns : "Usuń kolumny", -InsertCellAfter : "Wstaw komórkę z prawej", -InsertCellBefore : "Wstaw komórkę z lewej", +InsertCell : "Wstaw komórkę", DeleteCells : "Usuń komórki", MergeCells : "Połącz komórki", -MergeRight : "Połącz z komórką z prawej", -MergeDown : "Połącz z komórką poniżej", -HorizontalSplitCell : "Podziel komórkę poziomo", -VerticalSplitCell : "Podziel komórkę pionowo", +SplitCell : "Podziel komórkę", TableDelete : "Usuń tabelę", CellProperties : "Właściwości komórki", TableProperties : "Właściwości tabeli", @@ -138,16 +125,16 @@ FlashProperties : "Właściwości elementu Flash", AnchorProp : "Właściwości kotwicy", ButtonProp : "Właściwości przycisku", -CheckboxProp : "Właściwości pola wyboru (checkbox)", +CheckboxProp : "Checkbox - właściwości", HiddenFieldProp : "Właściwości pola ukrytego", -RadioButtonProp : "Właściwości pola wyboru (radio)", +RadioButtonProp : "Właściwości pola wyboru", ImageButtonProp : "Właściwości przycisku obrazka", TextFieldProp : "Właściwości pola tekstowego", SelectionFieldProp : "Właściwości listy wyboru", TextareaProp : "Właściwości obszaru tekstowego", FormProp : "Właściwości formularza", -FontFormats : "Normalny;Tekst sformatowany;Adres;Nagłówek 1;Nagłówek 2;Nagłówek 3;Nagłówek 4;Nagłówek 5;Nagłówek 6", +FontFormats : "Normalny;Tekst sformatowany;Adres;Nagłówek 1;Nagłówek 2;Nagłówek 3;Nagłówek 4;Nagłówek 5;Nagłówek 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Przetwarzanie XHTML. Proszę czekać...", @@ -159,9 +146,8 @@ UnknownCommand : "Nieznana komenda \"%1\"", NotImplemented : "Komenda niezaimplementowana", UnknownToolbarSet : "Pasek narzędzi \"%1\" nie istnieje", NoActiveX : "Ustawienia zabezpieczeń twojej przeglądarki mogą ograniczyć niektóre funkcje edytora. Musisz włączyć opcję \"Uruchamianie formantów Activex i dodatków plugin\". W przeciwnym wypadku mogą pojawiać się błędy.", -BrowseServerBlocked : "Nie można otworzyć okno menadżera plików. Upewnij się, że wszystkie blokady wyskakujących okienek są wyłączone.", -DialogBlocked : "Nie można otworzyć okna dialogowego. Upewnij się, że wszystkie blokady wyskakujących okienek są wyłączone.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING +BrowseServerBlocked : "Okno menadżera plików nie może zostać otwarte. Upewnij się, że wszystkie blokady popup są wyłączone.", +DialogBlocked : "Nie można otworzyć okna dialogowego. Upewnij się, że wszystkie blokady popup są wyłączone.", // Dialogs DlgBtnOK : "OK", @@ -174,7 +160,7 @@ DlgInfoTab : "Informacje", DlgAlertUrl : "Proszę podać URL", // General Dialogs Labels -DlgGenNotSet : "", +DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Kierunek tekstu", DlgGenLangDirLtr : "Od lewej do prawej (LTR)", @@ -183,17 +169,17 @@ DlgGenLangCode : "Kod języka", DlgGenAccessKey : "Klawisz dostępu", DlgGenName : "Nazwa", DlgGenTabIndex : "Indeks tabeli", -DlgGenLongDescr : "Długi opis hiperłącza", -DlgGenClass : "Nazwa klasy CSS", -DlgGenTitle : "Opis obiektu docelowego", -DlgGenContType : "Typ MIME obiektu docelowego", -DlgGenLinkCharset : "Kodowanie znaków obiektu docelowego", +DlgGenLongDescr : "Long Description URL", +DlgGenClass : "Stylesheet Classes", +DlgGenTitle : "Advisory Title", +DlgGenContType : "Advisory Content Type", +DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Styl", // Image Dialog DlgImgTitle : "Właściwości obrazka", DlgImgInfoTab : "Informacje o obrazku", -DlgImgBtnUpload : "Wyślij", +DlgImgBtnUpload : "Syślij", DlgImgURL : "Adres URL", DlgImgUpload : "Wyślij", DlgImgAlt : "Tekst zastępczy", @@ -216,7 +202,7 @@ DlgImgAlignTextTop : "Do góry tekstu", DlgImgAlignTop : "Do góry", DlgImgPreview : "Podgląd", DlgImgAlertUrl : "Podaj adres obrazka.", -DlgImgLinkTab : "Hiperłącze", +DlgImgLinkTab : "Link", // Flash Dialog DlgFlashTitle : "Właściwości elementu Flash", @@ -243,11 +229,11 @@ DlgLnkURL : "Adres URL", DlgLnkAnchorSel : "Wybierz etykietę", DlgLnkAnchorByName : "Wg etykiety", DlgLnkAnchorById : "Wg identyfikatora elementu", -DlgLnkNoAnchors : "(W dokumencie nie zdefiniowano żadnych etykiet)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Adres e-mail", DlgLnkEMailSubject : "Temat", DlgLnkEMailBody : "Treść", -DlgLnkUpload : "Wyślij", +DlgLnkUpload : "Upload", DlgLnkBtnUpload : "Wyślij", DlgLnkTarget : "Cel", @@ -276,7 +262,7 @@ DlgLnkPopTop : "Pozycja w pionie", DlnLnkMsgNoUrl : "Podaj adres URL", DlnLnkMsgNoEMail : "Podaj adres e-mail", DlnLnkMsgNoAnchor : "Wybierz etykietę", -DlnLnkMsgInvPopName : "Nazwa wyskakującego okienka musi zaczynać się od znaku alfanumerycznego i nie może zawierać spacji", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Wybierz kolor", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Odstęp pomiędzy komórkami", DlgTableCellPad : "Margines wewnętrzny komórek", DlgTableCaption : "Tytuł", DlgTableSummary : "Podsumowanie", -DlgTableHeaders : "Nagłówki", -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Właściwości komórki", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Do góry", DlgCellVerAlignMiddle : "Do środka", DlgCellVerAlignBottom : "Do dołu", DlgCellVerAlignBaseline : "Do linii bazowej", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Zajętość wierszy", DlgCellCollSpan : "Zajętość kolumn", DlgCellBackColor : "Kolor tła", DlgCellBorderColor : "Kolor ramki", DlgCellBtnSelect : "Wybierz...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Znajdź i zamień", - // Find Dialog DlgFindTitle : "Znajdź", DlgFindFindBtn : "Znajdź", @@ -369,9 +344,10 @@ PasteAsText : "Wklej jako czysty tekst", PasteFromWord : "Wklej z Worda", DlgPasteMsg2 : "Proszę wkleić w poniższym polu używając klawiaturowego skrótu (Ctrl+V) i kliknąć OK.", -DlgPasteSec : "Zabezpieczenia przeglądarki uniemożliwiają wklejenie danych bezpośrednio do edytora. Proszę dane wkleić ponownie w tym okienku.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoruj definicje 'Font Face'", DlgPasteRemoveStyles : "Usuń definicje Stylów", +DlgPasteCleanBox : "Wyczyść", // Color Picker ColorAutomatic : "Automatycznie", @@ -392,7 +368,7 @@ DlgSpellBtnIgnore : "Ignoruj", DlgSpellBtnIgnoreAll : "Ignoruj wszystkie", DlgSpellBtnReplace : "Zmień", DlgSpellBtnReplaceAll : "Zmień wszystkie", -DlgSpellBtnUndo : "Cofnij", +DlgSpellBtnUndo : "Undo", DlgSpellNoSuggestions : "- Brak sugestii -", DlgSpellProgress : "Trwa sprawdzanie ...", DlgSpellNoMispell : "Sprawdzanie zakończone: nie znaleziono błędów", @@ -405,14 +381,14 @@ IeSpellDownload : "Słownik nie jest zainstalowany. Chcesz go ściągnąć?", // Button Dialog DlgButtonText : "Tekst (Wartość)", DlgButtonType : "Typ", -DlgButtonTypeBtn : "Przycisk", -DlgButtonTypeSbm : "Wyślij", -DlgButtonTypeRst : "Wyzeruj", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nazwa", DlgCheckboxValue : "Wartość", -DlgCheckboxSelected : "Zaznaczone", +DlgCheckboxSelected : "Zaznaczony", // Form Dialog DlgFormName : "Nazwa", @@ -456,7 +432,7 @@ DlgHiddenValue : "Wartość", // Bulleted List Dialog BulletedListProp : "Właściwości listy punktowanej", NumberedListProp : "Właściwości listy numerowanej", -DlgLstStart : "Początek", +DlgLstStart : "Start", //MISSING DlgLstType : "Typ", DlgLstTypeCircle : "Koło", DlgLstTypeDisc : "Dysk", @@ -479,18 +455,18 @@ DlgDocLangDirLTR : "Od lewej do prawej (LTR)", DlgDocLangDirRTL : "Od prawej do lewej (RTL)", DlgDocLangCode : "Kod języka", DlgDocCharSet : "Kodowanie znaków", -DlgDocCharSetCE : "Środkowoeuropejskie", -DlgDocCharSetCT : "Chińskie tradycyjne (Big5)", -DlgDocCharSetCR : "Cyrylica", -DlgDocCharSetGR : "Greckie", -DlgDocCharSetJP : "Japońskie", -DlgDocCharSetKR : "Koreańskie", -DlgDocCharSetTR : "Tureckie", -DlgDocCharSetUN : "Unicode (UTF-8)", -DlgDocCharSetWE : "Zachodnioeuropejskie", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Inne kodowanie znaków", -DlgDocDocType : "Nagłówek typu dokumentu", +DlgDocDocType : "Nagłowek typu dokumentu", DlgDocDocTypeOther : "Inny typ dokumentu", DlgDocIncXHTML : "Dołącz deklarację XHTML", DlgDocBgColor : "Kolor tła", @@ -508,32 +484,21 @@ DlgDocMaBottom : "Dolny", DlgDocMeIndex : "Słowa kluczowe (oddzielone przecinkami)", DlgDocMeDescr : "Opis dokumentu", DlgDocMeAuthor : "Autor", -DlgDocMeCopy : "Prawa autorskie", +DlgDocMeCopy : "Copyright", DlgDocPreview : "Podgląd", // Templates Dialog -Templates : "Szablony", +Templates : "Sablony", DlgTemplatesTitle : "Szablony zawartości", DlgTemplatesSelMsg : "Wybierz szablon do otwarcia w edytorze
(obecna zawartość okna edytora zostanie utracona):", DlgTemplatesLoading : "Ładowanie listy szablonów. Proszę czekać...", DlgTemplatesNoTpl : "(Brak zdefiniowanych szablonów)", -DlgTemplatesReplace : "Zastąp aktualną zawartość", +DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "O ...", DlgAboutBrowserInfoTab : "O przeglądarce", DlgAboutLicenseTab : "Licencja", DlgAboutVersion : "wersja", -DlgAboutInfo : "Więcej informacji uzyskasz pod adresem", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Więcej informacji uzyskasz pod adresem" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/pt-br.js b/httemplate/elements/fckeditor/editor/lang/pt-br.js index 4ae448f13..53a2b5ddd 100644 --- a/httemplate/elements/fckeditor/editor/lang/pt-br.js +++ b/httemplate/elements/fckeditor/editor/lang/pt-br.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Remover Formatação", InsertLinkLbl : "Hiperlink", InsertLink : "Inserir/Editar Hiperlink", RemoveLink : "Remover Hiperlink", -VisitLink : "Open Link", //MISSING Anchor : "Inserir/Editar Âncora", -AnchorDelete : "Remover Âncora", InsertImageLbl : "Figura", InsertImage : "Inserir/Editar Figura", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Alinhar Direita", BlockJustify : "Justificado", DecreaseIndent : "Diminuir Recuo", IncreaseIndent : "Aumentar Recuo", -Blockquote : "Recuo", -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Desfazer", Redo : "Refazer", NumberedListLbl : "Numeração", @@ -109,27 +103,20 @@ SelectionField : "Caixa de Listagem", ImageButton : "Botão de Imagem", FitWindow : "Maximizar o tamanho do editor", -ShowBlocks : "Mostrar blocos", // Context Menu EditLink : "Editar Hiperlink", CellCM : "Célula", RowCM : "Linha", ColumnCM : "Coluna", -InsertRowAfter : "Inserir linha abaixo", -InsertRowBefore : "Inserir linha acima", +InsertRow : "Inserir Linha", DeleteRows : "Remover Linhas", -InsertColumnAfter : "Inserir coluna à direita", -InsertColumnBefore : "Inserir coluna à esquerda", +InsertColumn : "Inserir Coluna", DeleteColumns : "Remover Colunas", -InsertCellAfter : "Inserir célula à direita", -InsertCellBefore : "Inserir célula à esquerda", +InsertCell : "Inserir Células", DeleteCells : "Remover Células", MergeCells : "Mesclar Células", -MergeRight : "Mesclar com célula à direita", -MergeDown : "Mesclar com célula abaixo", -HorizontalSplitCell : "Dividir célula horizontalmente", -VerticalSplitCell : "Dividir célula verticalmente", +SplitCell : "Dividir Célular", TableDelete : "Apagar Tabela", CellProperties : "Formatar Célula", TableProperties : "Formatar Tabela", @@ -147,7 +134,7 @@ SelectionFieldProp : "Formatar Caixa de Listagem", TextareaProp : "Formatar Área de Texto", FormProp : "Formatar Formulário", -FontFormats : "Normal;Formatado;Endereço;Título 1;Título 2;Título 3;Título 4;Título 5;Título 6", +FontFormats : "Normal;Formatado;Endereço;Título 1;Título 2;Título 3;Título 4;Título 5;Título 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processando XHTML. Por favor, aguarde...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "A barra de ferramentas \"%1\" não existe", NoActiveX : "As configurações de segurança do seu browser podem limitar algumas características do editor. Você precisa habilitar a opção \"Executar controles e plug-ins ActiveX\". Você pode experimentar erros e alertas de características faltantes.", BrowseServerBlocked : "Os recursos do browser não puderam ser abertos. Tenha certeza que todos os bloqueadores de popup estão desabilitados.", DialogBlocked : "Não foi possível abrir a janela de diálogo. Tenha certeza que todos os bloqueadores de popup estão desabilitados.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL do hiperlink", DlgLnkAnchorSel : "Selecione uma âncora", DlgLnkAnchorByName : "Pelo Nome da âncora", DlgLnkAnchorById : "Pelo Id do Elemento", -DlgLnkNoAnchors : "(Não há âncoras disponíveis neste documento)", +DlgLnkNoAnchors : "(Não há âncoras disponíveis neste documento)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Endereço E-Mail", DlgLnkEMailSubject : "Assunto da Mensagem", DlgLnkEMailBody : "Corpo da Mensagem", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Espaçamento", DlgTableCellPad : "Enchimento", DlgTableCaption : "Legenda", DlgTableSummary : "Resumo", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Formatar célula", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Superior", DlgCellVerAlignMiddle : "Centralizado", DlgCellVerAlignBottom : "Inferior", DlgCellVerAlignBaseline : "Baseline", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Transpor Linhas", DlgCellCollSpan : "Transpor Colunas", DlgCellBackColor : "Cor do Plano de Fundo", DlgCellBorderColor : "Cor da Borda", DlgCellBtnSelect : "Selecionar...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Localizar e Substituir", - // Find Dialog DlgFindTitle : "Localizar...", DlgFindFindBtn : "Localizar", @@ -369,9 +344,10 @@ PasteAsText : "Colar como Texto sem Formatação", PasteFromWord : "Colar do Word", DlgPasteMsg2 : "Transfira o link usado no box usando o teclado com (Ctrl+V) e OK.", -DlgPasteSec : "As configurações de segurança do seu navegador não permitem que o editor acesse os dados da área de transferência diretamente. Por favor cole o conteúdo novamente nesta janela.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorar definições de fonte", DlgPasteRemoveStyles : "Remove definições de estilo", +DlgPasteCleanBox : "Limpar Box", // Color Picker ColorAutomatic : "Automático", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Sobre", DlgAboutBrowserInfoTab : "Informações do Navegador", DlgAboutLicenseTab : "Licença", DlgAboutVersion : "versão", -DlgAboutInfo : "Para maiores informações visite", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Para maiores informações visite" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/pt.js b/httemplate/elements/fckeditor/editor/lang/pt.js index 6a8842959..23bab35d9 100644 --- a/httemplate/elements/fckeditor/editor/lang/pt.js +++ b/httemplate/elements/fckeditor/editor/lang/pt.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Eliminar Formato", InsertLinkLbl : "Hiperligação", InsertLink : "Inserir/Editar Hiperligação", RemoveLink : "Eliminar Hiperligação", -VisitLink : "Open Link", //MISSING Anchor : " Inserir/Editar Âncora", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "Imagem", InsertImage : "Inserir/Editar Imagem", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Alinhar à Direita", BlockJustify : "Justificado", DecreaseIndent : "Diminuir Avanço", IncreaseIndent : "Aumentar Avanço", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Anular", Redo : "Repetir", NumberedListLbl : "Numeração", @@ -109,27 +103,20 @@ SelectionField : "Caixa de Combinação", ImageButton : "Botão de Imagem", FitWindow : "Maximizar o tamanho do editor", -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Editar Hiperligação", CellCM : "Célula", RowCM : "Linha", ColumnCM : "Coluna", -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "Inserir Linha", DeleteRows : "Eliminar Linhas", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "Inserir Coluna", DeleteColumns : "Eliminar Coluna", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "Inserir Célula", DeleteCells : "Eliminar Célula", MergeCells : "Unir Células", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "Dividir Célula", TableDelete : "Eliminar Tabela", CellProperties : "Propriedades da Célula", TableProperties : "Propriedades da Tabela", @@ -147,7 +134,7 @@ SelectionFieldProp : "Propriedades da Caixa de Combinação", TextareaProp : "Propriedades da Área de Texto", FormProp : "Propriedades do Formulário", -FontFormats : "Normal;Formatado;Endereço;Título 1;Título 2;Título 3;Título 4;Título 5;Título 6", +FontFormats : "Normal;Formatado;Endereço;Título 1;Título 2;Título 3;Título 4;Título 5;Título 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "A Processar XHTML. Por favor, espere...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Nome de barra \"%1\" não definido", NoActiveX : "As definições de segurança do navegador podem limitar algumas potencalidades do editr. Deve activar a opção \"Executar controlos e extensões ActiveX\". Pode ocorrer erros ou verificar que faltam potencialidades.", BrowseServerBlocked : "Não foi possível abrir o navegador de recursos. Certifique-se que todos os bloqueadores de popup estão desactivados.", DialogBlocked : "Não foi possível abrir a janela de diálogo. Certifique-se que todos os bloqueadores de popup estão desactivados.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Seleccionar una referência", DlgLnkAnchorByName : "Por Nome de Referência", DlgLnkAnchorById : "Por ID de elemento", -DlgLnkNoAnchors : "(Não há referências disponíveis no documento)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Endereço de E-Mail", DlgLnkEMailSubject : "Título de Mensagem", DlgLnkEMailBody : "Corpo da Mensagem", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Esp. e/células", DlgTableCellPad : "Esp. interior", DlgTableCaption : "Título", DlgTableSummary : "Sumário", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Propriedades da Célula", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Topo", DlgCellVerAlignMiddle : "Médio", DlgCellVerAlignBottom : "Fundi", DlgCellVerAlignBaseline : "Linha de Base", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Unir Linhas", DlgCellCollSpan : "Unir Colunas", DlgCellBackColor : "Cor do Fundo", DlgCellBorderColor : "Cor do Limite", DlgCellBtnSelect : "Seleccione...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Procurar", DlgFindFindBtn : "Procurar", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Por favor, cole dentro da seguinte caixa usando o teclado (", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Adresă de e-mail", DlgLnkEMailSubject : "Subiectul mesajului", DlgLnkEMailBody : "Conţinutul mesajului", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Spaţiu între celule", DlgTableCellPad : "Spaţiu în cadrul celulei", DlgTableCaption : "Titlu (Caption)", DlgTableSummary : "Rezumat", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Proprietăţile celulei", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Sus", DlgCellVerAlignMiddle : "Mijloc", DlgCellVerAlignBottom : "Jos", DlgCellVerAlignBaseline : "Linia de jos (Baseline)", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Lungimea în linii (Span)", DlgCellCollSpan : "Lungimea în coloane (Span)", DlgCellBackColor : "Culoarea fundalului", DlgCellBorderColor : "Culoarea marginii", DlgCellBtnSelect : "Selectaţi...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Găseşte şi înlocuieşte", - // Find Dialog DlgFindTitle : "Găseşte", DlgFindFindBtn : "Găseşte", @@ -369,9 +344,10 @@ PasteAsText : "Adaugă ca text simplu (Plain Text)", PasteFromWord : "Adaugă din Word", DlgPasteMsg2 : "Vă rugăm adăugaţi în căsuţa următoare folosind tastatura (Ctrl+V) şi apăsaţi OK.", -DlgPasteSec : "Din cauza setărilor de securitate ale programului dvs. cu care navigaţi pe internet (browser), editorul nu poate accesa direct datele din clipboard. Va trebui să adăugaţi din nou datele în această fereastră.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoră definiţiile Font Face", DlgPasteRemoveStyles : "Şterge definiţiile stilurilor", +DlgPasteCleanBox : "Şterge căsuţa", // Color Picker ColorAutomatic : "Automatic", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Despre", DlgAboutBrowserInfoTab : "Informaţii browser", DlgAboutLicenseTab : "Licenţă", DlgAboutVersion : "versiune", -DlgAboutInfo : "Pentru informaţii amănunţite, vizitaţi", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Pentru informaţii amănunţite, vizitaţi" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/ru.js b/httemplate/elements/fckeditor/editor/lang/ru.js index fb0267f6f..fdf151b90 100644 --- a/httemplate/elements/fckeditor/editor/lang/ru.js +++ b/httemplate/elements/fckeditor/editor/lang/ru.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Убрать форматирование", InsertLinkLbl : "Ссылка", InsertLink : "Вставить/Редактировать ссылку", RemoveLink : "Убрать ссылку", -VisitLink : "Перейти по ссылке", Anchor : "Вставить/Редактировать якорь", -AnchorDelete : "Убрать якорь", InsertImageLbl : "Изображение", InsertImage : "Вставить/Редактировать изображение", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "По правому краю", BlockJustify : "По ширине", DecreaseIndent : "Уменьшить отступ", IncreaseIndent : "Увеличить отступ", -Blockquote : "Цитата", -CreateDiv : "Создать Div контейнер", -EditDiv : "Редактировать Div контейнер", -DeleteDiv : "Удалить Div контейнер", Undo : "Отменить", Redo : "Повторить", NumberedListLbl : "Нумерованный список", @@ -109,27 +103,20 @@ SelectionField : "Список", ImageButton : "Кнопка с изображением", FitWindow : "Развернуть окно редактора", -ShowBlocks : "Показать блоки", // Context Menu EditLink : "Вставить ссылку", CellCM : "Ячейка", RowCM : "Строка", ColumnCM : "Колонка", -InsertRowAfter : "Вставить строку после", -InsertRowBefore : "Вставить строку до", +InsertRow : "Вставить строку", DeleteRows : "Удалить строки", -InsertColumnAfter : "Вставить колонку после", -InsertColumnBefore : "Вставить колонку до", +InsertColumn : "Вставить колонку", DeleteColumns : "Удалить колонки", -InsertCellAfter : "Вставить ячейку после", -InsertCellBefore : "Вставить ячейку до", +InsertCell : "Вставить ячейку", DeleteCells : "Удалить ячейки", MergeCells : "Соединить ячейки", -MergeRight : "Соединить вправо", -MergeDown : "Соединить вниз", -HorizontalSplitCell : "Разбить ячейку горизонтально", -VerticalSplitCell : "Разбить ячейку вертикально", +SplitCell : "Разбить ячейку", TableDelete : "Удалить таблицу", CellProperties : "Свойства ячейки", TableProperties : "Свойства таблицы", @@ -147,10 +134,10 @@ SelectionFieldProp : "Свойства списка", TextareaProp : "Свойства текстовой области", FormProp : "Свойства формы", -FontFormats : "Нормальный;Форматированный;Адрес;Заголовок 1;Заголовок 2;Заголовок 3;Заголовок 4;Заголовок 5;Заголовок 6;Нормальный (DIV)", +FontFormats : "Нормальный;Форматированный;Адрес;Заголовок 1;Заголовок 2;Заголовок 3;Заголовок 4;Заголовок 5;Заголовок 6;Нормальный (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages -ProcessingXHTML : "Обработка XHTML. Пожалуйста, подождите...", +ProcessingXHTML : "Обработка XHTML. Пожалуйста подождите...", Done : "Сделано", PasteWordConfirm : "Текст, который вы хотите вставить, похож на копируемый из Word. Вы хотите очистить его перед вставкой?", NotCompatiblePaste : "Эта команда доступна для Internet Explorer версии 5.5 или выше. Вы хотите вставить без очистки?", @@ -160,8 +147,7 @@ NotImplemented : "Команда не реализована", UnknownToolbarSet : "Панель инструментов \"%1\" не существует", NoActiveX : "Настройки безопасности вашего браузера могут ограничивать некоторые свойства редактора. Вы должны включить опцию \"Запускать элементы управления ActiveX и плугины\". Вы можете видеть ошибки и замечать отсутствие возможностей.", BrowseServerBlocked : "Ресурсы браузера не могут быть открыты. Проверьте что блокировки всплывающих окон выключены.", -DialogBlocked : "Невозможно открыть окно диалога. Проверьте что блокировки всплывающих окон выключены.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING +DialogBlocked : "Не возможно открыть окно диалога. Проверьте что блокировки всплывающих окон выключены.", // Dialogs DlgBtnOK : "ОК", @@ -171,7 +157,7 @@ DlgBtnBrowseServer : "Просмотреть на сервере", DlgAdvancedTag : "Расширенный", DlgOpOther : "<Другое>", DlgInfoTab : "Информация", -DlgAlertUrl : "Пожалуйста, вставьте URL", +DlgAlertUrl : "Пожалуйста вставьте URL", // General Dialogs Labels DlgGenNotSet : "<не определено>", @@ -215,7 +201,7 @@ DlgImgAlignRight : "По правому краю", DlgImgAlignTextTop : "Текст наверху", DlgImgAlignTop : "По верху", DlgImgPreview : "Предварительный просмотр", -DlgImgAlertUrl : "Пожалуйста, введите URL изображения", +DlgImgAlertUrl : "Пожалуйста введите URL изображения", DlgImgLinkTab : "Ссылка", // Flash Dialog @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Выберите якорь", DlgLnkAnchorByName : "По имени якоря", DlgLnkAnchorById : "По идентификатору элемента", -DlgLnkNoAnchors : "(Нет якорей доступных в этом документе)", +DlgLnkNoAnchors : "<Нет якорей доступных в этом документе>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Адрес эл. почты", DlgLnkEMailSubject : "Заголовок сообщения", DlgLnkEMailBody : "Тело сообщения", @@ -273,9 +259,9 @@ DlgLnkPopHeight : "Высота", DlgLnkPopLeft : "Позиция слева", DlgLnkPopTop : "Позиция сверху", -DlnLnkMsgNoUrl : "Пожалуйста, введите URL ссылки", -DlnLnkMsgNoEMail : "Пожалуйста, введите адрес эл. почты", -DlnLnkMsgNoAnchor : "Пожалуйста, выберете якорь", +DlnLnkMsgNoUrl : "Пожалуйста введите URL ссылки", +DlnLnkMsgNoEMail : "Пожалуйста введите адрес эл. почты", +DlnLnkMsgNoAnchor : "Пожалуйста выберете якорь", DlnLnkMsgInvPopName : "Название вспывающего окна должно начинаться буквы и не может содержать пробелов", // Color Dialog @@ -308,11 +294,6 @@ DlgTableCellSpace : "Промежуток (spacing)", DlgTableCellPad : "Отступ (padding)", DlgTableCaption : "Заголовок", DlgTableSummary : "Резюме", -DlgTableHeaders : "Заголовки", -DlgTableHeadersNone : "Нет", -DlgTableHeadersColumn : "Первый столбец", -DlgTableHeadersRow : "Первая строка", -DlgTableHeadersBoth : "Оба варианта", // Table Cell Dialog DlgCellTitle : "Свойства ячейки", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Сверху", DlgCellVerAlignMiddle : "Посередине", DlgCellVerAlignBottom : "Снизу", DlgCellVerAlignBaseline : "По базовой линии", -DlgCellType : "Тип ячейки", -DlgCellTypeData : "Данные", -DlgCellTypeHeader : "Заголовок", DlgCellRowSpan : "Диапазон строк (span)", DlgCellCollSpan : "Диапазон колонок (span)", DlgCellBackColor : "Цвет фона", DlgCellBorderColor : "Цвет бордюра", DlgCellBtnSelect : "Выберите...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Найти и заменить", - // Find Dialog DlgFindTitle : "Найти", DlgFindFindBtn : "Найти", @@ -362,16 +337,17 @@ DlgReplaceReplAllBtn : "Заменить все", DlgReplaceWordChk : "Совпадение целых слов", // Paste Operations / Dialog -PasteErrorCut : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста, используйте клавиатуру для этого (Ctrl+X).", -PasteErrorCopy : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста, используйте клавиатуру для этого (Ctrl+C).", +PasteErrorCut : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста используйте клавиатуру для этого (Ctrl+X).", +PasteErrorCopy : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста используйте клавиатуру для этого (Ctrl+C).", PasteAsText : "Вставить только текст", PasteFromWord : "Вставить из Word", -DlgPasteMsg2 : "Пожалуйста, вставьте текст в прямоугольник, используя сочетание клавиш (Ctrl+V), и нажмите OK.", -DlgPasteSec : "По причине настроек безопасности браузера, редактор не имеет доступа к данным буфера обмена напрямую. Вам необходимо вставить текст снова в это окно.", +DlgPasteMsg2 : "Пожалуйста вставьте текст в прямоугольник используя сочетание клавиш (Ctrl+V) и нажмите OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Игнорировать определения гарнитуры", DlgPasteRemoveStyles : "Убрать определения стилей", +DlgPasteCleanBox : "Очистить", // Color Picker ColorAutomatic : "Автоматический", @@ -383,7 +359,7 @@ DocProps : "Свойства документа", // Anchor Dialog DlgAnchorTitle : "Свойства якоря", DlgAnchorName : "Имя якоря", -DlgAnchorErrorName : "Пожалуйста, введите имя якоря", +DlgAnchorErrorName : "Пожалуйста введите имя якоря", // Speller Pages Dialog DlgSpellNotInDic : "Нет в словаре", @@ -475,8 +451,8 @@ DlgDocMetaTab : "Мета данные", DlgDocPageTitle : "Заголовок страницы", DlgDocLangDir : "Направление текста", -DlgDocLangDirLTR : "Слева направо (LTR)", -DlgDocLangDirRTL : "Справа налево (RTL)", +DlgDocLangDirLTR : "Слева на право (LTR)", +DlgDocLangDirRTL : "Справа на лево (RTL)", DlgDocLangCode : "Код языка", DlgDocCharSet : "Кодировка набора символов", DlgDocCharSetCE : "Центрально-европейская", @@ -514,8 +490,8 @@ DlgDocPreview : "Предварительный просмотр", // Templates Dialog Templates : "Шаблоны", DlgTemplatesTitle : "Шаблоны содержимого", -DlgTemplatesSelMsg : "Пожалуйста, выберете шаблон для открытия в редакторе
(текущее содержимое будет потеряно):", -DlgTemplatesLoading : "Загрузка списка шаблонов. Пожалуйста, подождите...", +DlgTemplatesSelMsg : "Пожалуйста выберете шаблон для открытия в редакторе
(текущее содержимое будет потеряно):", +DlgTemplatesLoading : "Загрузка списка шаблонов. Пожалуйста подождите...", DlgTemplatesNoTpl : "(Ни одного шаблона не определено)", DlgTemplatesReplace : "Заменить текущее содержание", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "О программе", DlgAboutBrowserInfoTab : "Информация браузера", DlgAboutLicenseTab : "Лицензия", DlgAboutVersion : "Версия", -DlgAboutInfo : "Для большей информации, посетите", - -// Div Dialog -DlgDivGeneralTab : "Информация", -DlgDivAdvancedTab : "Расширенные настройки", -DlgDivStyle : "Стиль", -DlgDivInlineStyle : "Встроенные стили", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Для большей информации, посетите" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/sk.js b/httemplate/elements/fckeditor/editor/lang/sk.js index ff1783c89..83d00bac3 100644 --- a/httemplate/elements/fckeditor/editor/lang/sk.js +++ b/httemplate/elements/fckeditor/editor/lang/sk.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -30,7 +30,7 @@ ToolbarCollapse : "Skryť panel nástrojov", ToolbarExpand : "Zobraziť panel nástrojov", // Toolbar Items and Context Menu -Save : "Uložiť", +Save : "Uložit", NewPage : "Nová stránka", Preview : "Náhľad", Cut : "Vystrihnúť", @@ -44,9 +44,7 @@ RemoveFormat : "Odstrániť formátovanie", InsertLinkLbl : "Odkaz", InsertLink : "Vložiť/zmeniť odkaz", RemoveLink : "Odstrániť odkaz", -VisitLink : "Ísť na odkaz", Anchor : "Vložiť/zmeniť kotvu", -AnchorDelete : "Odstrániť kotvu", InsertImageLbl : "Obrázok", InsertImage : "Vložiť/zmeniť obrázok", InsertFlashLbl : "Flash", @@ -59,7 +57,7 @@ InsertSpecialCharLbl: "Špeciálne znaky", InsertSpecialChar : "Vložiť špeciálne znaky", InsertSmileyLbl : "Smajlíky", InsertSmiley : "Vložiť smajlíka", -About : "O aplikácii FCKeditor", +About : "O aplikáci FCKeditor", Bold : "Tučné", Italic : "Kurzíva", Underline : "Podčiarknuté", @@ -72,14 +70,10 @@ RightJustify : "Zarovnať vpravo", BlockJustify : "Zarovnať do bloku", DecreaseIndent : "Zmenšiť odsadenie", IncreaseIndent : "Zväčšiť odsadenie", -Blockquote : "Citácia", -CreateDiv : "Vytvoriť Div kontajner", -EditDiv : "Editovať Div kontajner", -DeleteDiv : "Odstrániť Div kontajner", Undo : "Späť", Redo : "Znovu", NumberedListLbl : "Číslovanie", -NumberedList : "Vložiť/odstrániť číslovanie", +NumberedList : "Vložiť/odstrániť číslovaný zoznam", BulletedListLbl : "Odrážky", BulletedList : "Vložiť/odstraniť odrážky", ShowTableBorders : "Zobraziť okraje tabuliek", @@ -104,32 +98,25 @@ RadioButton : "Prepínač", TextField : "Textové pole", Textarea : "Textová oblasť", HiddenField : "Skryté pole", -Button : "Tlačidlo", +Button : "Tlačíidlo", SelectionField : "Rozbaľovací zoznam", ImageButton : "Obrázkové tlačidlo", FitWindow : "Maximalizovať veľkosť okna editora", -ShowBlocks : "Ukázať bloky", // Context Menu EditLink : "Zmeniť odkaz", CellCM : "Bunka", RowCM : "Riadok", ColumnCM : "Stĺpec", -InsertRowAfter : "Vložiť riadok pred", -InsertRowBefore : "Vložiť riadok za", +InsertRow : "Vložiť riadok", DeleteRows : "Vymazať riadok", -InsertColumnAfter : "Vložiť stĺpec pred", -InsertColumnBefore : "Vložiť stĺpec za", +InsertColumn : "Vložiť stĺpec", DeleteColumns : "Zmazať stĺpec", -InsertCellAfter : "Vložiť bunku za", -InsertCellBefore : "Vložiť bunku pred", +InsertCell : "Vložiť bunku", DeleteCells : "Vymazať bunky", MergeCells : "Zlúčiť bunky", -MergeRight : "Zlúčiť doprava", -MergeDown : "Zlúčiť dole", -HorizontalSplitCell : "Rozdeliť bunky horizontálne", -VerticalSplitCell : "Rozdeliť bunky vertikálne", +SplitCell : "Rozdeliť bunku", TableDelete : "Vymazať tabuľku", CellProperties : "Vlastnosti bunky", TableProperties : "Vlastnosti tabuľky", @@ -147,7 +134,7 @@ SelectionFieldProp : "Vlastnosti rozbaľovacieho zoznamu", TextareaProp : "Vlastnosti textovej oblasti", FormProp : "Vlastnosti formulára", -FontFormats : "Normálny;Formátovaný;Adresa;Nadpis 1;Nadpis 2;Nadpis 3;Nadpis 4;Nadpis 5;Nadpis 6;Odsek (DIV)", +FontFormats : "Normálny;Formátovaný;Adresa;Nadpis 1;Nadpis 2;Nadpis 3;Nadpis 4;Nadpis 5;Nadpis 6;Odsek (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Prebieha spracovanie XHTML. Čakajte prosím...", @@ -159,9 +146,8 @@ UnknownCommand : "Neznámy príkaz \"%1\"", NotImplemented : "Príkaz nie je implementovaný", UnknownToolbarSet : "Panel nástrojov \"%1\" neexistuje", NoActiveX : "Bezpečnostné nastavenia vášho prehliadača môžu obmedzovať niektoré funkcie editora. Pre ich plnú funkčnosť musíte zapnúť voľbu \"Spúšťať ActiveX moduly a zásuvné moduly\", inak sa môžete stretnúť s chybami a nefunkčnosťou niektorých funkcií.", -BrowseServerBlocked : "Prehliadač zdrojových prvkov nebolo možné otvoriť. Uistite sa, že máte vypnutú službu blokovania popup okien.", -DialogBlocked : "Dialógové okno nebolo možné otvoriť. Uistite sa, že máte vypnutú službu blokovania popup okien.", -VisitLinkBlocked : "Nebolo možné otvoriť nové okno. Uistite sa, že máte vypnutú službu blokovania popup okien.", +BrowseServerBlocked : "Prehliadač zdrojových prvkov nebolo možné otvoriť. Uistite sa, že máte vypnuté všetky blokovače vyskakujúcich okien.", +DialogBlocked : "Dialógové okno nebolo možné otvoriť. Uistite sa, že máte vypnuté všetky blokovače vyskakujúcich okien.", // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Vybrať kotvu", DlgLnkAnchorByName : "Podľa mena kotvy", DlgLnkAnchorById : "Podľa Id objektu", -DlgLnkNoAnchors : "(V stránke nie je definovaná žiadna kotva)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mailová adresa", DlgLnkEMailSubject : "Predmet správy", DlgLnkEMailBody : "Telo správy", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Vzdialenosť buniek", DlgTableCellPad : "Odsadenie obsahu", DlgTableCaption : "Popis", DlgTableSummary : "Prehľad", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Vlastnosti bunky", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Nahor", DlgCellVerAlignMiddle : "Doprostred", DlgCellVerAlignBottom : "Dole", DlgCellVerAlignBaseline : "Na základňu", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Zlúčené riadky", DlgCellCollSpan : "Zlúčené stĺpce", DlgCellBackColor : "Farba pozadia", DlgCellBorderColor : "Farba ohraničenia", DlgCellBtnSelect : "Výber...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Nájsť a nahradiť", - // Find Dialog DlgFindTitle : "Hľadať", DlgFindFindBtn : "Hľadať", @@ -362,16 +337,17 @@ DlgReplaceReplAllBtn : "Nahradiť všetko", DlgReplaceWordChk : "Len celé slová", // Paste Operations / Dialog -PasteErrorCut : "Bezpečnostné nastavenia Vášho prehliadača nedovoľujú editoru spustiť funkciu pre vystrihnutie zvoleného textu do schránky. Prosím vystrihnite zvolený text do schránky pomocou klávesnice (Ctrl+X).", -PasteErrorCopy : "Bezpečnostné nastavenia Vášho prehliadača nedovoľujú editoru spustiť funkciu pre kopírovanie zvoleného textu do schránky. Prosím skopírujte zvolený text do schránky pomocou klávesnice (Ctrl+C).", +PasteErrorCut : "Bezpečnostné nastavenie Vášho prehliadača nedovoľujú editoru spustiť funkciu pre vystrihnutie zvoleného textu do schránky. Prosím vystrihnite zvolený text do schránky pomocou klávesnice (Ctrl+X).", +PasteErrorCopy : "Bezpečnostné nastavenie Vášho prehliadača nedovoľujú editoru spustiť funkciu pre kopírovanie zvoleného textu do schránky. Prosím skopírujte zvolený text do schránky pomocou klávesnice (Ctrl+C).", PasteAsText : "Vložiť ako čistý text", PasteFromWord : "Vložiť text z Wordu", DlgPasteMsg2 : "Prosím vložte nasledovný rámček použitím klávesnice (Ctrl+V) a stlačte OK.", -DlgPasteSec : "Bezpečnostné nastavenia Vášho prehliadača nedovoľujú editoru pristupovať priamo k datám v schránke. Musíte ich vložiť znovu do tohto okna.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorovať nastavenia typu písma", DlgPasteRemoveStyles : "Odstrániť formátovanie", +DlgPasteCleanBox : "Vyčistiť schránku", // Color Picker ColorAutomatic : "Automaticky", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "O aplikáci", DlgAboutBrowserInfoTab : "Informácie o prehliadači", DlgAboutLicenseTab : "Licencia", DlgAboutVersion : "verzia", -DlgAboutInfo : "Viac informácií získate na", - -// Div Dialog -DlgDivGeneralTab : "Hlavné", -DlgDivAdvancedTab : "Rozšírené", -DlgDivStyle : "Štýl", -DlgDivInlineStyle : "Inline štýl", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Viac informácií získate na" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/sl.js b/httemplate/elements/fckeditor/editor/lang/sl.js index b23b93cac..95cde15f0 100644 --- a/httemplate/elements/fckeditor/editor/lang/sl.js +++ b/httemplate/elements/fckeditor/editor/lang/sl.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Odstrani oblikovanje", InsertLinkLbl : "Povezava", InsertLink : "Vstavi/uredi povezavo", RemoveLink : "Odstrani povezavo", -VisitLink : "Open Link", //MISSING Anchor : "Vstavi/uredi zaznamek", -AnchorDelete : "Odstrani zaznamek", InsertImageLbl : "Slika", InsertImage : "Vstavi/uredi sliko", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Desna poravnava", BlockJustify : "Obojestranska poravnava", DecreaseIndent : "Zmanjšaj zamik", IncreaseIndent : "Povečaj zamik", -Blockquote : "Citat", -CreateDiv : "Ustvari Div element", -EditDiv : "Uredi Div element", -DeleteDiv : "Odstrani Div element", Undo : "Razveljavi", Redo : "Ponovi", NumberedListLbl : "Oštevilčen seznam", @@ -108,28 +102,21 @@ Button : "Gumb", SelectionField : "Spustni seznam", ImageButton : "Gumb s sliko", -FitWindow : "Razširi velikost urejevalnika čez cel zaslon", -ShowBlocks : "Prikaži ograde", +FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Uredi povezavo", -CellCM : "Celica", -RowCM : "Vrstica", -ColumnCM : "Stolpec", -InsertRowAfter : "Vstavi vrstico za", -InsertRowBefore : "Vstavi vrstico pred", +CellCM : "Cell", //MISSING +RowCM : "Row", //MISSING +ColumnCM : "Column", //MISSING +InsertRow : "Vstavi vrstico", DeleteRows : "Izbriši vrstice", -InsertColumnAfter : "Vstavi stolpec za", -InsertColumnBefore : "Vstavi stolpec pred", +InsertColumn : "Vstavi stolpec", DeleteColumns : "Izbriši stolpce", -InsertCellAfter : "Vstavi celico za", -InsertCellBefore : "Vstavi celico pred", +InsertCell : "Vstavi celico", DeleteCells : "Izbriši celice", MergeCells : "Združi celice", -MergeRight : "Združi desno", -MergeDown : "Druži navzdol", -HorizontalSplitCell : "Razdeli celico vodoravno", -VerticalSplitCell : "Razdeli celico navpično", +SplitCell : "Razdeli celico", TableDelete : "Izbriši tabelo", CellProperties : "Lastnosti celice", TableProperties : "Lastnosti tabele", @@ -147,7 +134,7 @@ SelectionFieldProp : "Lastnosti spustnega seznama", TextareaProp : "Lastnosti vnosnega območja", FormProp : "Lastnosti obrazca", -FontFormats : "Navaden;Oblikovan;Napis;Naslov 1;Naslov 2;Naslov 3;Naslov 4;Naslov 5;Naslov 6", +FontFormats : "Navaden;Oblikovan;Napis;Naslov 1;Naslov 2;Naslov 3;Naslov 4;Naslov 5;Naslov 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Obdelujem XHTML. Prosim počakajte...", @@ -158,10 +145,9 @@ UnknownToolbarItem : "Neznan element orodne vrstice \"%1\"", UnknownCommand : "Neznano ime ukaza \"%1\"", NotImplemented : "Ukaz ni izdelan", UnknownToolbarSet : "Skupina orodnih vrstic \"%1\" ne obstoja", -NoActiveX : "Varnostne nastavitve vašega brskalnika lahko omejijo delovanje nekaterih zmožnosti urejevalnika. Če ne želite zaznavati napak in sporočil o manjkajočih zmožnostih, omogočite možnost \"Zaženi ActiveX kontrolnike in vtičnike\".", -BrowseServerBlocked : "Brskalnik virov se ne more odpreti. Prepričajte se, da je preprečevanje pojavnih oken onemogočeno.", -DialogBlocked : "Pogovorno okno se ni moglo odpreti. Prepričajte se, da je preprečevanje pojavnih oken onemogočeno.", -VisitLinkBlocked : "Pogovorno okno se ni moglo odpreti. Prepričajte se, da je preprečevanje pojavnih oken onemogočeno.", +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "V redu", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Izberi zaznamek", DlgLnkAnchorByName : "Po imenu zaznamka", DlgLnkAnchorById : "Po ID-ju elementa", -DlgLnkNoAnchors : "(V tem dokumentu ni zaznamkov)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Elektronski naslov", DlgLnkEMailSubject : "Predmet sporočila", DlgLnkEMailBody : "Vsebina sporočila", @@ -276,7 +262,7 @@ DlgLnkPopTop : "Lega na vrhu", DlnLnkMsgNoUrl : "Vnesite URL povezave", DlnLnkMsgNoEMail : "Vnesite elektronski naslov", DlnLnkMsgNoAnchor : "Izberite zaznamek", -DlnLnkMsgInvPopName : "Ime pojavnega okna se mora začeti s črko ali številko in ne sme vsebovati presledkov", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Izberite barvo", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Razmik med celicami", DlgTableCellPad : "Polnilo med celicami", DlgTableCaption : "Naslov", DlgTableSummary : "Povzetek", -DlgTableHeaders : "Glava", -DlgTableHeadersNone : "Brez", -DlgTableHeadersColumn : "Prvi stolpec", -DlgTableHeadersRow : "Prva vrstica", -DlgTableHeadersBoth : "Oboje", // Table Cell Dialog DlgCellTitle : "Lastnosti celice", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Na vrh", DlgCellVerAlignMiddle : "V sredino", DlgCellVerAlignBottom : "Na dno", DlgCellVerAlignBaseline : "Na osnovno črto", -DlgCellType : "Tip celice", -DlgCellTypeData : "Podatek", -DlgCellTypeHeader : "Naslov", DlgCellRowSpan : "Spojenih vrstic (row-span)", DlgCellCollSpan : "Spojenih stolpcev (col-span)", DlgCellBackColor : "Barva ozadja", DlgCellBorderColor : "Barva obrobe", DlgCellBtnSelect : "Izberi...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Najdi in zamenjaj", - // Find Dialog DlgFindTitle : "Najdi", DlgFindFindBtn : "Najdi", @@ -369,9 +344,10 @@ PasteAsText : "Prilepi kot golo besedilo", PasteFromWord : "Prilepi iz Worda", DlgPasteMsg2 : "Prosim prilepite v sleči okvir s pomočjo tipkovnice (Ctrl+V) in pritisnite V redu.", -DlgPasteSec : "Zaradi varnostnih nastavitev vašega brskalnika urejevalnik ne more neposredno dostopati do odložišča. Vsebino odložišča ponovno prilepite v to okno.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Prezri obliko pisave", DlgPasteRemoveStyles : "Odstrani nastavitve stila", +DlgPasteCleanBox : "Počisti okvir", // Color Picker ColorAutomatic : "Samodejno", @@ -405,9 +381,9 @@ IeSpellDownload : "Črkovalnik ni nameščen. Ali ga želite prenesti sedaj?", // Button Dialog DlgButtonText : "Besedilo (Vrednost)", DlgButtonType : "Tip", -DlgButtonTypeBtn : "Gumb", -DlgButtonTypeSbm : "Potrdi", -DlgButtonTypeRst : "Ponastavi", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Ime", @@ -456,7 +432,7 @@ DlgHiddenValue : "Vrednost", // Bulleted List Dialog BulletedListProp : "Lastnosti označenega seznama", NumberedListProp : "Lastnosti oštevilčenega seznama", -DlgLstStart : "Začetek", +DlgLstStart : "Start", //MISSING DlgLstType : "Tip", DlgLstTypeCircle : "Pikica", DlgLstTypeDisc : "Kroglica", @@ -479,15 +455,15 @@ DlgDocLangDirLTR : "Od leve proti desni (LTR)", DlgDocLangDirRTL : "Od desne proti levi (RTL)", DlgDocLangCode : "Oznaka jezika", DlgDocCharSet : "Kodna tabela", -DlgDocCharSetCE : "Srednjeevropsko", -DlgDocCharSetCT : "Tradicionalno Kitajsko (Big5)", -DlgDocCharSetCR : "Cirilica", -DlgDocCharSetGR : "Grško", -DlgDocCharSetJP : "Japonsko", -DlgDocCharSetKR : "Korejsko", -DlgDocCharSetTR : "Turško", -DlgDocCharSetUN : "Unicode (UTF-8)", -DlgDocCharSetWE : "Zahodnoevropsko", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Druga kodna tabela", DlgDocDocType : "Glava tipa dokumenta", @@ -517,23 +493,12 @@ DlgTemplatesTitle : "Vsebinske predloge", DlgTemplatesSelMsg : "Izberite predlogo, ki jo želite odpreti v urejevalniku
(trenutna vsebina bo izgubljena):", DlgTemplatesLoading : "Nalagam seznam predlog. Prosim počakajte...", DlgTemplatesNoTpl : "(Ni pripravljenih predlog)", -DlgTemplatesReplace : "Zamenjaj trenutno vsebino", +DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Vizitka", DlgAboutBrowserInfoTab : "Informacije o brskalniku", -DlgAboutLicenseTab : "Dovoljenja", +DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "različica", -DlgAboutInfo : "Za več informacij obiščite", - -// Div Dialog -DlgDivGeneralTab : "Splošno", -DlgDivAdvancedTab : "Napredno", -DlgDivStyle : "Oblika", -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Za več informacij obiščite" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/sr-latn.js b/httemplate/elements/fckeditor/editor/lang/sr-latn.js index 3b059eed0..5fa8154e1 100644 --- a/httemplate/elements/fckeditor/editor/lang/sr-latn.js +++ b/httemplate/elements/fckeditor/editor/lang/sr-latn.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Ukloni formatiranje", InsertLinkLbl : "Link", InsertLink : "Unesi/izmeni link", RemoveLink : "Ukloni link", -VisitLink : "Open Link", //MISSING Anchor : "Unesi/izmeni sidro", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "Slika", InsertImage : "Unesi/izmeni sliku", InsertFlashLbl : "Fleš", @@ -72,10 +70,6 @@ RightJustify : "Desno ravnanje", BlockJustify : "Obostrano ravnanje", DecreaseIndent : "Smanji levu marginu", IncreaseIndent : "Uvećaj levu marginu", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Poni�ti akciju", Redo : "Ponovi akciju", NumberedListLbl : "Nabrojiva lista", @@ -109,27 +103,20 @@ SelectionField : "Izborno polje", ImageButton : "Dugme sa slikom", FitWindow : "Maximize the editor size", //MISSING -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Izmeni link", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "Unesi red", DeleteRows : "Obriši redove", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "Unesi kolonu", DeleteColumns : "Obriši kolone", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "Unesi ćelije", DeleteCells : "Obriši ćelije", MergeCells : "Spoj celije", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "Razdvoji celije", TableDelete : "Delete Table", //MISSING CellProperties : "Osobine celije", TableProperties : "Osobine tabele", @@ -147,7 +134,7 @@ SelectionFieldProp : "Osobine izbornog polja", TextareaProp : "Osobine zone teksta", FormProp : "Osobine forme", -FontFormats : "Normal;Formatirano;Adresa;Naslov 1;Naslov 2;Naslov 3;Naslov 4;Naslov 5;Naslov 6", +FontFormats : "Normal;Formatirano;Adresa;Naslov 1;Naslov 2;Naslov 3;Naslov 4;Naslov 5;Naslov 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Obradujem XHTML. Malo strpljenja...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Toolbar \"%1\" ne postoji", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Odaberi sidro", DlgLnkAnchorByName : "Po nazivu sidra", DlgLnkAnchorById : "Po Id-ju elementa", -DlgLnkNoAnchors : "(Nema dostupnih sidra)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail adresa", DlgLnkEMailSubject : "Naslov", DlgLnkEMailBody : "Sadržaj poruke", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Ćelijski prostor", DlgTableCellPad : "Razmak ćelija", DlgTableCaption : "Naslov tabele", DlgTableSummary : "Summary", //MISSING -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Osobine ćelije", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Gornje", DlgCellVerAlignMiddle : "Sredina", DlgCellVerAlignBottom : "Donje", DlgCellVerAlignBaseline : "Bazno", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Spajanje redova", DlgCellCollSpan : "Spajanje kolona", DlgCellBackColor : "Boja pozadine", DlgCellBorderColor : "Boja okvira", DlgCellBtnSelect : "Odaberi...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Pronađi", DlgFindFindBtn : "Pronađi", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Molimo Vas da zalepite unutar donje povrine koristeći tastaturn DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoriši definicije fontova", DlgPasteRemoveStyles : "Ukloni definicije stilova", +DlgPasteCleanBox : "Obriši sve", // Color Picker ColorAutomatic : "Automatski", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "O editoru", DlgAboutBrowserInfoTab : "Informacije o pretraživacu", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "verzija", -DlgAboutInfo : "Za više informacija posetite", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Za više informacija posetite" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/sr.js b/httemplate/elements/fckeditor/editor/lang/sr.js index 42ef9728c..e7aac2311 100644 --- a/httemplate/elements/fckeditor/editor/lang/sr.js +++ b/httemplate/elements/fckeditor/editor/lang/sr.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Уклони форматирање", InsertLinkLbl : "Линк", InsertLink : "Унеси/измени линк", RemoveLink : "Уклони линк", -VisitLink : "Open Link", //MISSING Anchor : "Унеси/измени сидро", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "Слика", InsertImage : "Унеси/измени слику", InsertFlashLbl : "Флеш елемент", @@ -72,10 +70,6 @@ RightJustify : "Десно равнање", BlockJustify : "Обострано равнање", DecreaseIndent : "Смањи леву маргину", IncreaseIndent : "Увећај леву маргину", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "Поништи акцију", Redo : "Понови акцију", NumberedListLbl : "Набројиву листу", @@ -109,27 +103,20 @@ SelectionField : "Изборно поље", ImageButton : "Дугме са сликом", FitWindow : "Maximize the editor size", //MISSING -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "Промени линк", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "Унеси ред", DeleteRows : "Обриши редове", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "Унеси колону", DeleteColumns : "Обриши колоне", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "Унеси ћелије", DeleteCells : "Обриши ћелије", MergeCells : "Спој ћелије", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "Раздвоји ћелије", TableDelete : "Delete Table", //MISSING CellProperties : "Особине ћелије", TableProperties : "Особине табеле", @@ -147,7 +134,7 @@ SelectionFieldProp : "Особине изборног поља", TextareaProp : "Особине зоне текста", FormProp : "Особине форме", -FontFormats : "Normal;Formatirano;Adresa;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", +FontFormats : "Normal;Formatirano;Adresa;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Обрађујем XHTML. Maлo стрпљења...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Toolbar \"%1\" не постоји", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", @@ -243,7 +229,7 @@ DlgLnkURL : "УРЛ", DlgLnkAnchorSel : "Одабери сидро", DlgLnkAnchorByName : "По називу сидра", DlgLnkAnchorById : "Пo Ид-jу елемента", -DlgLnkNoAnchors : "(Нема доступних сидра)", +DlgLnkNoAnchors : "<Нема доступних сидра>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Адреса електронске поште", DlgLnkEMailSubject : "Наслов", DlgLnkEMailBody : "Садржај поруке", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Ћелијски простор", DlgTableCellPad : "Размак ћелија", DlgTableCaption : "Наслов табеле", DlgTableSummary : "Summary", //MISSING -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Особине ћелије", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Горње", DlgCellVerAlignMiddle : "Средина", DlgCellVerAlignBottom : "Доње", DlgCellVerAlignBaseline : "Базно", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Спајање редова", DlgCellCollSpan : "Спајање колона", DlgCellBackColor : "Боја позадине", DlgCellBorderColor : "Боја оквира", DlgCellBtnSelect : "Oдабери...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "Пронађи", DlgFindFindBtn : "Пронађи", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Молимо Вас да залепите унутар доње DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Игнориши Font Face дефиниције", DlgPasteRemoveStyles : "Уклони дефиниције стилова", +DlgPasteCleanBox : "Обриши све", // Color Picker ColorAutomatic : "Аутоматски", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "О едитору", DlgAboutBrowserInfoTab : "Информације о претраживачу", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "верзија", -DlgAboutInfo : "За више информација посетите", - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "За више информација посетите" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/sv.js b/httemplate/elements/fckeditor/editor/lang/sv.js index c62d6be57..a301a0335 100644 --- a/httemplate/elements/fckeditor/editor/lang/sv.js +++ b/httemplate/elements/fckeditor/editor/lang/sv.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Radera formatering", InsertLinkLbl : "Länk", InsertLink : "Infoga/Redigera länk", RemoveLink : "Radera länk", -VisitLink : "Öppna länk", Anchor : "Infoga/Redigera ankarlänk", -AnchorDelete : "Radera ankarlänk", InsertImageLbl : "Bild", InsertImage : "Infoga/Redigera bild", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Högerjustera", BlockJustify : "Justera till marginaler", DecreaseIndent : "Minska indrag", IncreaseIndent : "Öka indrag", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Skapa Div behållare", -EditDiv : "Redigera Div behållare", -DeleteDiv : "Radera Div behållare", Undo : "Ångra", Redo : "Gör om", NumberedListLbl : "Numrerad lista", @@ -109,27 +103,20 @@ SelectionField : "Flervalslista", ImageButton : "Bildknapp", FitWindow : "Anpassa till fönstrets storlek", -ShowBlocks : "Visa block", // Context Menu EditLink : "Redigera länk", CellCM : "Cell", RowCM : "Rad", ColumnCM : "Kolumn", -InsertRowAfter : "Lägg till Rad Efter", -InsertRowBefore : "Lägg till Rad Före", +InsertRow : "Infoga rad", DeleteRows : "Radera rad", -InsertColumnAfter : "Lägg till Kolumn Efter", -InsertColumnBefore : "Lägg till Kolumn Före", +InsertColumn : "Infoga kolumn", DeleteColumns : "Radera kolumn", -InsertCellAfter : "Lägg till Cell Efter", -InsertCellBefore : "Lägg till Cell Före", +InsertCell : "Infoga cell", DeleteCells : "Radera celler", MergeCells : "Sammanfoga celler", -MergeRight : "Sammanfoga Höger", -MergeDown : "Sammanfoga Ner", -HorizontalSplitCell : "Dela Cell Horisontellt", -VerticalSplitCell : "Dela Cell Vertikalt", +SplitCell : "Separera celler", TableDelete : "Radera tabell", CellProperties : "Cellegenskaper", TableProperties : "Tabellegenskaper", @@ -147,7 +134,7 @@ SelectionFieldProp : "Egenskaper för flervalslista", TextareaProp : "Egenskaper för textruta", FormProp : "Egenskaper för formulär", -FontFormats : "Normal;Formaterad;Adress;Rubrik 1;Rubrik 2;Rubrik 3;Rubrik 4;Rubrik 5;Rubrik 6;Normal (DIV)", +FontFormats : "Normal;Formaterad;Adress;Rubrik 1;Rubrik 2;Rubrik 3;Rubrik 4;Rubrik 5;Rubrik 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Bearbetar XHTML. Var god vänta...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Verktygsfält \"%1\" finns ej", NoActiveX : "Din webläsares säkerhetsinställningar kan begränsa funktionaliteten. Du bör aktivera \"Kör ActiveX kontroller och plug-ins\". Fel och avsaknad av funktioner kan annars uppstå.", BrowseServerBlocked : "Kunde Ej öppna resursfönstret. Var god och avaktivera alla popup-blockerare.", DialogBlocked : "Kunde Ej öppna dialogfönstret. Var god och avaktivera alla popup-blockerare.", -VisitLinkBlocked : "Kunde Ej öppna nytt fönster. Var god och avaktivera alla popup-blockerare.", // Dialogs DlgBtnOK : "OK", @@ -188,7 +174,7 @@ DlgGenClass : "Stylesheet class", DlgGenTitle : "Titel", DlgGenContType : "Innehållstyp", DlgGenLinkCharset : "Teckenuppställning", -DlgGenStyle : "Stil", +DlgGenStyle : "Style", // Image Dialog DlgImgTitle : "Bildegenskaper", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Välj ett ankare", DlgLnkAnchorByName : "efter ankarnamn", DlgLnkAnchorById : "efter objektid", -DlgLnkNoAnchors : "(Inga ankare kunde hittas)", +DlgLnkNoAnchors : "(Inga ankare kunde hittas)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-postadress", DlgLnkEMailSubject : "Ämne", DlgLnkEMailBody : "Innehåll", @@ -306,13 +292,8 @@ DlgTableWidthPc : "procent", DlgTableHeight : "Höjd", DlgTableCellSpace : "Cellavstånd", DlgTableCellPad : "Cellutfyllnad", -DlgTableCaption : "Titel", +DlgTableCaption : "Rubrik", DlgTableSummary : "Sammanfattning", -DlgTableHeaders : "Rubrikrad", -DlgTableHeadersNone : "Ingen", -DlgTableHeadersColumn : "Första kolumnen", -DlgTableHeadersRow : "Första raden", -DlgTableHeadersBoth : "Båda", // Table Cell Dialog DlgCellTitle : "Cellegenskaper", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Topp", DlgCellVerAlignMiddle : "Mitten", DlgCellVerAlignBottom : "Nederkant", DlgCellVerAlignBaseline : "Underst", -DlgCellType : "Cell Typ", -DlgCellTypeData : "Data", -DlgCellTypeHeader : "Titel", DlgCellRowSpan : "Radomfång", DlgCellCollSpan : "Kolumnomfång", DlgCellBackColor : "Bakgrundsfärg", DlgCellBorderColor : "Kantfärg", DlgCellBtnSelect : "Välj...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Sök och ersätt", - // Find Dialog DlgFindTitle : "Sök", DlgFindFindBtn : "Sök", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Var god och klistra in Er text i rutan nedan genom att använda DlgPasteSec : "På grund av din webläsares säkerhetsinställningar kan verktyget inte få åtkomst till urklippsdatan. Var god och använd detta fönster istället.", DlgPasteIgnoreFont : "Ignorera typsnittsdefinitioner", DlgPasteRemoveStyles : "Radera Stildefinitioner", +DlgPasteCleanBox : "Töm rutans innehåll", // Color Picker ColorAutomatic : "Automatisk", @@ -456,7 +432,7 @@ DlgHiddenValue : "Värde", // Bulleted List Dialog BulletedListProp : "Egenskaper för punktlista", NumberedListProp : "Egenskaper för numrerad lista", -DlgLstStart : "Start", +DlgLstStart : "Start", //MISSING DlgLstType : "Typ", DlgLstTypeCircle : "Cirkel", DlgLstTypeDisc : "Punkt", @@ -523,17 +499,6 @@ DlgTemplatesReplace : "Ersätt aktuellt innehåll", DlgAboutAboutTab : "Om", DlgAboutBrowserInfoTab : "Webläsare", DlgAboutLicenseTab : "Licens", -DlgAboutVersion : "Version", -DlgAboutInfo : "För mer information se", - -// Div Dialog -DlgDivGeneralTab : "Allmänt", -DlgDivAdvancedTab : "Avancerat", -DlgDivStyle : "Stil", -DlgDivInlineStyle : "Inbäddad stil", - -ScaytTitle : "SCAYT", -ScaytTitleOptions : "Alternativ", -ScaytTitleLangs : "Språk", -ScaytTitleAbout : "Om" -}; +DlgAboutVersion : "version", +DlgAboutInfo : "För mer information se" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/th.js b/httemplate/elements/fckeditor/editor/lang/th.js index 7f3b1a437..8c4319a15 100644 --- a/httemplate/elements/fckeditor/editor/lang/th.js +++ b/httemplate/elements/fckeditor/editor/lang/th.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "ล้างรูปแบบ", InsertLinkLbl : "ลิงค์เชื่อมโยงเว็บ อีเมล์ รูปภาพ หรือไฟล์อื่นๆ", InsertLink : "แทรก/แก้ไข ลิงค์", RemoveLink : "ลบ ลิงค์", -VisitLink : "Open Link", //MISSING Anchor : "แทรก/แก้ไข Anchor", -AnchorDelete : "Remove Anchor", //MISSING InsertImageLbl : "รูปภาพ", InsertImage : "แทรก/แก้ไข รูปภาพ", InsertFlashLbl : "ไฟล์ Flash", @@ -72,10 +70,6 @@ RightJustify : "จัดชิดขวา", BlockJustify : "จัดพอดีหน้ากระดาษ", DecreaseIndent : "ลดระยะย่อหน้า", IncreaseIndent : "เพิ่มระยะย่อหน้า", -Blockquote : "Blockquote", //MISSING -CreateDiv : "Create Div Container", //MISSING -EditDiv : "Edit Div Container", //MISSING -DeleteDiv : "Remove Div Container", //MISSING Undo : "ยกเลิกคำสั่ง", Redo : "ทำซ้ำคำสั่ง", NumberedListLbl : "ลำดับรายการแบบตัวเลข", @@ -109,27 +103,20 @@ SelectionField : "แถบตัวเลือก", ImageButton : "ปุ่มแบบรูปภาพ", FitWindow : "ขยายขนาดตัวอีดิตเตอร์", -ShowBlocks : "Show Blocks", //MISSING // Context Menu EditLink : "แก้ไข ลิงค์", CellCM : "ช่องตาราง", RowCM : "แถว", ColumnCM : "คอลัมน์", -InsertRowAfter : "Insert Row After", //MISSING -InsertRowBefore : "Insert Row Before", //MISSING +InsertRow : "แทรกแถว", DeleteRows : "ลบแถว", -InsertColumnAfter : "Insert Column After", //MISSING -InsertColumnBefore : "Insert Column Before", //MISSING +InsertColumn : "แทรกสดมน์", DeleteColumns : "ลบสดมน์", -InsertCellAfter : "Insert Cell After", //MISSING -InsertCellBefore : "Insert Cell Before", //MISSING +InsertCell : "แทรกช่อง", DeleteCells : "ลบช่อง", MergeCells : "ผสานช่อง", -MergeRight : "Merge Right", //MISSING -MergeDown : "Merge Down", //MISSING -HorizontalSplitCell : "Split Cell Horizontally", //MISSING -VerticalSplitCell : "Split Cell Vertically", //MISSING +SplitCell : "แยกช่อง", TableDelete : "ลบตาราง", CellProperties : "คุณสมบัติของช่อง", TableProperties : "คุณสมบัติของตาราง", @@ -147,7 +134,7 @@ SelectionFieldProp : "คุณสมบัติของ แถบตัวเ TextareaProp : "คุณสมบัติของ เท็กแอเรีย", FormProp : "คุณสมบัติของ แบบฟอร์ม", -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Paragraph (DIV)", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Paragraph (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "โปรแกรมกำลังทำงานด้วยเทคโนโลยี XHTML กรุณารอสักครู่...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "ไม่มีการติดตั้งชุดค NoActiveX : "โปรแกรมท่องอินเตอร์เน็ตของท่านไม่อนุญาติให้อีดิตเตอร์ทำงาน \"Run ActiveX controls and plug-ins\". หากไม่อนุญาติให้ใช้งาน ActiveX controls ท่านจะไม่สามารถใช้งานได้อย่างเต็มประสิทธิภาพ.", BrowseServerBlocked : "เปิดหน้าต่างป๊อบอัพเพื่อทำงานต่อไม่ได้ กรุณาปิดเครื่องมือป้องกันป๊อบอัพในโปรแกรมท่องอินเตอร์เน็ตของท่านด้วย", DialogBlocked : "เปิดหน้าต่างป๊อบอัพเพื่อทำงานต่อไม่ได้ กรุณาปิดเครื่องมือป้องกันป๊อบอัพในโปรแกรมท่องอินเตอร์เน็ตของท่านด้วย", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "ตกลง", @@ -243,7 +229,7 @@ DlgLnkURL : "ที่อยู่อ้างอิงออนไลน์ ( DlgLnkAnchorSel : "ระบุข้อมูลของจุดเชื่อมโยง (Anchor)", DlgLnkAnchorByName : "ชื่อ", DlgLnkAnchorById : "ไอดี", -DlgLnkNoAnchors : "(ยังไม่มีจุดเชื่อมโยงภายในหน้าเอกสารนี้)", +DlgLnkNoAnchors : "(ยังไม่มีจุดเชื่อมโยงภายในหน้าเอกสารนี้)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "อีเมล์ (E-Mail)", DlgLnkEMailSubject : "หัวเรื่อง", DlgLnkEMailBody : "ข้อความ", @@ -308,11 +294,6 @@ DlgTableCellSpace : "ระยะแนวนอนน", DlgTableCellPad : "ระยะแนวตั้ง", DlgTableCaption : "หัวเรื่องของตาราง", DlgTableSummary : "สรุปความ", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "คุณสมบัติของ ช่อง", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "บนสุด", DlgCellVerAlignMiddle : "กึ่งกลาง", DlgCellVerAlignBottom : "ล่างสุด", DlgCellVerAlignBaseline : "อิงบรรทัด", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "จำนวนแถวที่คร่อมกัน", DlgCellCollSpan : "จำนวนสดมน์ที่คร่อมกัน", DlgCellBackColor : "สีพื้นหลัง", DlgCellBorderColor : "สีเส้นขอบ", DlgCellBtnSelect : "เลือก..", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Find and Replace", //MISSING - // Find Dialog DlgFindTitle : "ค้นหา", DlgFindFindBtn : "ค้นหา", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "กรุณาใช้คีย์บอร์ดเท่า DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "ไม่สนใจ Font Face definitions", DlgPasteRemoveStyles : "ลบ Styles definitions", +DlgPasteCleanBox : "ล้างข้อมูลใน Box", // Color Picker ColorAutomatic : "สีอัตโนมัติ", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "เกี่ยวกับโปรแกรม", DlgAboutBrowserInfoTab : "โปรแกรมท่องเว็บที่ท่านใช้", DlgAboutLicenseTab : "ลิขสิทธิ์", DlgAboutVersion : "รุ่น", -DlgAboutInfo : "For further information go to", //MISSING - -// Div Dialog -DlgDivGeneralTab : "General", //MISSING -DlgDivAdvancedTab : "Advanced", //MISSING -DlgDivStyle : "Style", //MISSING -DlgDivInlineStyle : "Inline Style", //MISSING - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "For further information go to" //MISSING +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/tr.js b/httemplate/elements/fckeditor/editor/lang/tr.js index 7707c3c2b..53b371ec7 100644 --- a/httemplate/elements/fckeditor/editor/lang/tr.js +++ b/httemplate/elements/fckeditor/editor/lang/tr.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Biçimi Kaldır", InsertLinkLbl : "Köprü", InsertLink : "Köprü Ekle/Düzenle", RemoveLink : "Köprü Kaldır", -VisitLink : "Köprü Aç", Anchor : "Çapa Ekle/Düzenle", -AnchorDelete : "Çapa Sil", InsertImageLbl : "Resim", InsertImage : "Resim Ekle/Düzenle", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Sağa Dayalı", BlockJustify : "İki Kenara Yaslanmış", DecreaseIndent : "Sekme Azalt", IncreaseIndent : "Sekme Arttır", -Blockquote : "Blok Oluştur", -CreateDiv : "Div Ekle", -EditDiv : "Div Düzenle", -DeleteDiv : "Div Sil", Undo : "Geri Al", Redo : "Tekrarla", NumberedListLbl : "Numaralı Liste", @@ -109,27 +103,20 @@ SelectionField : "Seçim Menüsü", ImageButton : "Resimli Düğme", FitWindow : "Düzenleyici boyutunu büyüt", -ShowBlocks : "Blokları Göster", // Context Menu EditLink : "Köprü Düzenle", CellCM : "Hücre", RowCM : "Satır", ColumnCM : "Sütun", -InsertRowAfter : "Satır Ekle - Sonra", -InsertRowBefore : "Satır Ekle - Önce", +InsertRow : "Satır Ekle", DeleteRows : "Satır Sil", -InsertColumnAfter : "Kolon Ekle - Sonra", -InsertColumnBefore : "Kolon Ekle - Önce", +InsertColumn : "Sütun Ekle", DeleteColumns : "Sütun Sil", -InsertCellAfter : "Hücre Ekle - Sonra", -InsertCellBefore : "Hücre Ekle - Önce", +InsertCell : "Hücre Ekle", DeleteCells : "Hücre Sil", MergeCells : "Hücreleri Birleştir", -MergeRight : "Birleştir - Sağdaki İle ", -MergeDown : "Birleştir - Aşağıdaki İle ", -HorizontalSplitCell : "Hücreyi Yatay Böl", -VerticalSplitCell : "Hücreyi Dikey Böl", +SplitCell : "Hücre Böl", TableDelete : "Tabloyu Sil", CellProperties : "Hücre Özellikleri", TableProperties : "Tablo Özellikleri", @@ -147,7 +134,7 @@ SelectionFieldProp : "Seçim Menüsü Özellikleri", TextareaProp : "Çok Satırlı Metin Özellikleri", FormProp : "Form Özellikleri", -FontFormats : "Normal;Biçimli;Adres;Başlık 1;Başlık 2;Başlık 3;Başlık 4;Başlık 5;Başlık 6;Paragraf (DIV)", +FontFormats : "Normal;Biçimli;Adres;Başlık 1;Başlık 2;Başlık 3;Başlık 4;Başlık 5;Başlık 6;Paragraf (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML işleniyor. Lütfen bekleyin...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "\"%1\" araç çubuğu öğesi mevcut değil", NoActiveX : "Kullandığınız tarayıcının güvenlik ayarları bazı özelliklerin kullanılmasını engelliyor. Bu özelliklerin çalışması için \"Run ActiveX controls and plug-ins (Activex ve eklentileri çalıştır)\" seçeneğinin aktif yapılması gerekiyor. Kullanılamayan eklentiler ve hatalar konusunda daha fazla bilgi sahibi olun.", BrowseServerBlocked : "Kaynak tarayıcısı açılamadı. Tüm \"popup blocker\" programlarının devre dışı olduğundan emin olun. (Yahoo toolbar, Msn toolbar, Google toolbar gibi)", DialogBlocked : "Diyalog açmak mümkün olmadı. Tüm \"Popup Blocker\" programlarının devre dışı olduğundan emin olun.", -VisitLinkBlocked : "Yeni pencere açmak mümkün olmadı. Tüm \"Popup Blocker\" programlarının devre dışı olduğundan emin olun", // Dialogs DlgBtnOK : "Tamam", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Çapa Seç", DlgLnkAnchorByName : "Çapa Adı ile", DlgLnkAnchorById : "Eleman Kimlik Numarası ile", -DlgLnkNoAnchors : "(Bu belgede hiç çapa yok)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Posta Adresi", DlgLnkEMailSubject : "İleti Konusu", DlgLnkEMailBody : "İleti Gövdesi", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Izgara kalınlığı", DlgTableCellPad : "Izgara yazı arası", DlgTableCaption : "Başlık", DlgTableSummary : "Özet", -DlgTableHeaders : "Başlıklar", -DlgTableHeadersNone : "Yok", -DlgTableHeadersColumn : "İlk Sütun", -DlgTableHeadersRow : "İlk Satır", -DlgTableHeadersBoth : "Her İkisi", // Table Cell Dialog DlgCellTitle : "Hücre Özellikleri", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Tepe", DlgCellVerAlignMiddle : "Orta", DlgCellVerAlignBottom : "Alt", DlgCellVerAlignBaseline : "Taban Çizgisi", -DlgCellType : "Hücre Tipi", -DlgCellTypeData : "Veri", -DlgCellTypeHeader : "Başlık", DlgCellRowSpan : "Satır Kapla", DlgCellCollSpan : "Sütun Kapla", DlgCellBackColor : "Arka Plan Rengi", DlgCellBorderColor : "Kenar Rengi", DlgCellBtnSelect : "Seç...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Bul ve Değiştir", - // Find Dialog DlgFindTitle : "Bul", DlgFindFindBtn : "Bul", @@ -369,9 +344,10 @@ PasteAsText : "Düz Metin Olarak Yapıştır", PasteFromWord : "Word'den yapıştır", DlgPasteMsg2 : "Lütfen aşağıdaki kutunun içine yapıştırın. (Ctrl+V) ve Tamam butonunu tıklayın.", -DlgPasteSec : "Gezgin yazılımınızın güvenlik ayarları düzenleyicinin direkt olarak panoya erişimine izin vermiyor. Bu pencere içine tekrar yapıştırmalısınız..", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Yazı Tipi tanımlarını yoksay", DlgPasteRemoveStyles : "Biçem Tanımlarını çıkar", +DlgPasteCleanBox : "Temizlik Kutusu", // Color Picker ColorAutomatic : "Otomatik", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Hakkında", DlgAboutBrowserInfoTab : "Gezgin Bilgisi", DlgAboutLicenseTab : "Lisans", DlgAboutVersion : "sürüm", -DlgAboutInfo : "Daha fazla bilgi için:", - -// Div Dialog -DlgDivGeneralTab : "Genel", -DlgDivAdvancedTab : "Gelişmiş", -DlgDivStyle : "Sitil", -DlgDivInlineStyle : "Satıriçi Sitil", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Daha fazla bilgi için:" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/uk.js b/httemplate/elements/fckeditor/editor/lang/uk.js index 8191d549f..1defaac76 100644 --- a/httemplate/elements/fckeditor/editor/lang/uk.js +++ b/httemplate/elements/fckeditor/editor/lang/uk.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Прибрати форматування", InsertLinkLbl : "Посилання", InsertLink : "Вставити/Редагувати посилання", RemoveLink : "Знищити посилання", -VisitLink : "Відкрити посилання", Anchor : "Вставити/Редагувати якір", -AnchorDelete : "Видалити якір", InsertImageLbl : "Зображення", InsertImage : "Вставити/Редагувати зображення", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "По правому краю", BlockJustify : "По ширині", DecreaseIndent : "Зменшити відступ", IncreaseIndent : "Збільшити відступ", -Blockquote : "Цитата", -CreateDiv : "Створити Div контейнер", -EditDiv : "Редагувати Div контейнер", -DeleteDiv : "Видалити Div контейнер", Undo : "Повернути", Redo : "Повторити", NumberedListLbl : "Нумерований список", @@ -109,27 +103,20 @@ SelectionField : "Список", ImageButton : "Кнопка із зображенням", FitWindow : "Розвернути вікно редактора", -ShowBlocks : "Показувати блоки", // Context Menu EditLink : "Вставити посилання", CellCM : "Осередок", RowCM : "Рядок", ColumnCM : "Колонка", -InsertRowAfter : "Вставити рядок після", -InsertRowBefore : "Вставити рядок до", +InsertRow : "Вставити строку", DeleteRows : "Видалити строки", -InsertColumnAfter : "Вставити колонку після", -InsertColumnBefore : "Вставити колонку до", +InsertColumn : "Вставити колонку", DeleteColumns : "Видалити колонки", -InsertCellAfter : "Вставити комірку після", -InsertCellBefore : "Вставити комірку до", +InsertCell : "Вставити комірку", DeleteCells : "Видалити комірки", MergeCells : "Об'єднати комірки", -MergeRight : "Об'єднати зправа", -MergeDown : "Об'єднати до низу", -HorizontalSplitCell : "Розділити комірку по горизонталі", -VerticalSplitCell : "Розділити комірку по вертикалі", +SplitCell : "Роз'єднати комірку", TableDelete : "Видалити таблицю", CellProperties : "Властивості комірки", TableProperties : "Властивості таблиці", @@ -147,7 +134,7 @@ SelectionFieldProp : "Властивості списку", TextareaProp : "Властивості текстової області", FormProp : "Властивості форми", -FontFormats : "Нормальний;Форматований;Адреса;Заголовок 1;Заголовок 2;Заголовок 3;Заголовок 4;Заголовок 5;Заголовок 6;Нормальний (DIV)", +FontFormats : "Нормальний;Форматований;Адреса;Заголовок 1;Заголовок 2;Заголовок 3;Заголовок 4;Заголовок 5;Заголовок 6;Нормальний (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Обробка XHTML. Зачекайте, будь ласка...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "Панель інструментів \"%1\" не існу NoActiveX : "Настройки безпеки вашого браузера можуть обмежувати деякі властивості редактора. Ви повинні включити опцію \"Запускати елементи управління ACTIVEX і плугіни\". Ви можете бачити помилки і помічати відсутність можливостей.", BrowseServerBlocked : "Ресурси браузера не можуть бути відкриті. Перевірте що блокування спливаючих вікон вимкнені.", DialogBlocked : "Не можливо відкрити вікно діалогу. Перевірте що блокування спливаючих вікон вимкнені.", -VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "ОК", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Оберіть якір", DlgLnkAnchorByName : "За ім'ям якоря", DlgLnkAnchorById : "За ідентифікатором елемента", -DlgLnkNoAnchors : "(Немає якорів доступних в цьому документі)", +DlgLnkNoAnchors : "<Немає якорів доступних в цьому документі>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Адреса ел. пошти", DlgLnkEMailSubject : "Тема листа", DlgLnkEMailBody : "Тіло повідомлення", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Проміжок (spacing)", DlgTableCellPad : "Відступ (padding)", DlgTableCaption : "Заголовок", DlgTableSummary : "Резюме", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Властивості комірки", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "Зверху", DlgCellVerAlignMiddle : "Посередині", DlgCellVerAlignBottom : "Знизу", DlgCellVerAlignBaseline : "По базовій лінії", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING DlgCellRowSpan : "Діапазон строк (span)", DlgCellCollSpan : "Діапазон колонок (span)", DlgCellBackColor : "Колір фона", DlgCellBorderColor : "Колір бордюра", DlgCellBtnSelect : "Оберіть...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Знайти і замінити", - // Find Dialog DlgFindTitle : "Пошук", DlgFindFindBtn : "Пошук", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Будь-ласка, вставте з буфера обміну DlgPasteSec : "Редактор не може отримати прямий доступ до буферу обміну у зв'язку з налаштуваннями вашого браузера. Вам потрібно вставити інформацію повторно в це вікно.", DlgPasteIgnoreFont : "Ігнорувати налаштування шрифтів", DlgPasteRemoveStyles : "Видалити налаштування стилів", +DlgPasteCleanBox : "Очистити область", // Color Picker ColorAutomatic : "Автоматичний", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Про програму", DlgAboutBrowserInfoTab : "Інформація браузера", DlgAboutLicenseTab : "Ліцензія", DlgAboutVersion : "Версія", -DlgAboutInfo : "Додаткову інформацію дивіться на ", - -// Div Dialog -DlgDivGeneralTab : "Загальна", -DlgDivAdvancedTab : "Розширена", -DlgDivStyle : "Стиль", -DlgDivInlineStyle : "Inline стиль", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Додаткову інформацію дивіться на " +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/vi.js b/httemplate/elements/fckeditor/editor/lang/vi.js index ac940385a..5c2c608ec 100644 --- a/httemplate/elements/fckeditor/editor/lang/vi.js +++ b/httemplate/elements/fckeditor/editor/lang/vi.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "Xoá Định dạng", InsertLinkLbl : "Liên kết", InsertLink : "Chèn/Sửa Liên kết", RemoveLink : "Xoá Liên kết", -VisitLink : "Mở Liên Kết", Anchor : "Chèn/Sửa Neo", -AnchorDelete : "Gỡ bỏ Neo", InsertImageLbl : "Hình ảnh", InsertImage : "Chèn/Sửa Hình ảnh", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "Canh phải", BlockJustify : "Canh đều", DecreaseIndent : "Dịch ra ngoài", IncreaseIndent : "Dịch vào trong", -Blockquote : "Khối Trích dẫn", -CreateDiv : "Tạo Div Container", -EditDiv : "Chỉnh sửa Div Container", -DeleteDiv : "Gỡ bỏ Div Container", Undo : "Khôi phục thao tác", Redo : "Làm lại thao tác", NumberedListLbl : "Danh sách có thứ tự", @@ -109,27 +103,20 @@ SelectionField : "Ô chọn", ImageButton : "Nút hình ảnh", FitWindow : "Mở rộng tối đa kích thước trình biên tập", -ShowBlocks : "Hiển thị các Khối", // Context Menu EditLink : "Sửa Liên kết", CellCM : "Ô", RowCM : "Hàng", ColumnCM : "Cột", -InsertRowAfter : "Chèn Hàng Phía sau", -InsertRowBefore : "Chèn Hàng Phía trước", +InsertRow : "Chèn Hàng", DeleteRows : "Xoá Hàng", -InsertColumnAfter : "Chèn Cột Phía sau", -InsertColumnBefore : "Chèn Cột Phía trước", +InsertColumn : "Chèn Cột", DeleteColumns : "Xoá Cột", -InsertCellAfter : "Chèn Ô Phía sau", -InsertCellBefore : "Chèn Ô Phía trước", +InsertCell : "Chèn Ô", DeleteCells : "Xoá Ô", -MergeCells : "Kết hợp Ô", -MergeRight : "Kết hợp Sang phải", -MergeDown : "Kết hợp Xuống dưới", -HorizontalSplitCell : "Tách ngang Ô", -VerticalSplitCell : "Tách dọc Ô", +MergeCells : "Trộn Ô", +SplitCell : "Chia Ô", TableDelete : "Xóa Bảng", CellProperties : "Thuộc tính Ô", TableProperties : "Thuộc tính Bảng", @@ -147,7 +134,7 @@ SelectionFieldProp : "Thuộc tính Ô chọn", TextareaProp : "Thuộc tính Vùng văn bản", FormProp : "Thuộc tính Biểu mẫu", -FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Đang xử lý XHTML. Vui lòng đợi trong giây lát...", @@ -158,10 +145,9 @@ UnknownToolbarItem : "Không rõ mục trên thanh công cụ \"%1\"", UnknownCommand : "Không rõ lệnh \"%1\"", NotImplemented : "Lệnh không được thực hiện", UnknownToolbarSet : "Thanh công cụ \"%1\" không tồn tại", -NoActiveX : "Các thiết lập bảo mật của trình duyệt có thể giới hạn một số chức năng của trình biên tập. Bạn phải bật tùy chọn \"Run ActiveX controls and plug-ins\". Bạn có thể gặp một số lỗi và thấy thiếu một số chức năng.", +NoActiveX : "Các thiết lập bảo mật của trình duyệt có thể giới hạn một số chức năng của trình biên tập. Bạn phải bật tùy chọn \"Run ActiveX controls and plug-ins\". Bạn có thể gặp một số lỗi và thấy thiếu đi một số chức năng.", BrowseServerBlocked : "Không thể mở được bộ duyệt tài nguyên. Hãy đảm bảo chức năng chặn popup đã bị vô hiệu hóa.", DialogBlocked : "Không thể mở được cửa sổ hộp thoại. Hãy đảm bảo chức năng chặn popup đã bị vô hiệu hóa.", -VisitLinkBlocked : "Không thể mở được cửa sổ trình duyệt mới. Hãy đảm bảo chức năng chặn popup đã bị vô hiệu hóa.", // Dialogs DlgBtnOK : "Đồng ý", @@ -199,7 +185,7 @@ DlgImgUpload : "Tải lên", DlgImgAlt : "Chú thích Hình ảnh", DlgImgWidth : "Rộng", DlgImgHeight : "Cao", -DlgImgLockRatio : "Giữ nguyên tỷ lệ", +DlgImgLockRatio : "Giữ tỷ lệ", DlgBtnResetSize : "Kích thước gốc", DlgImgBorder : "Đường viền", DlgImgHSpace : "HSpace", @@ -208,7 +194,7 @@ DlgImgAlign : "Vị trí", DlgImgAlignLeft : "Trái", DlgImgAlignAbsBottom: "Dưới tuyệt đối", DlgImgAlignAbsMiddle: "Giữa tuyệt đối", -DlgImgAlignBaseline : "Đường cơ sở", +DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Dưới", DlgImgAlignMiddle : "Giữa", DlgImgAlignRight : "Phải", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "Chọn một Neo", DlgLnkAnchorByName : "Theo Tên Neo", DlgLnkAnchorById : "Theo Định danh Element", -DlgLnkNoAnchors : "(Không có Neo nào trong tài liệu)", +DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Thư điện tử", DlgLnkEMailSubject : "Tiêu đề Thông điệp", DlgLnkEMailBody : "Nội dung Thông điệp", @@ -308,11 +294,6 @@ DlgTableCellSpace : "Khoảng cách Ô", DlgTableCellPad : "Đệm Ô", DlgTableCaption : "Đầu đề", DlgTableSummary : "Tóm lược", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "Thuộc tính Ô", @@ -334,19 +315,13 @@ DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Trên", DlgCellVerAlignMiddle : "Giữa", DlgCellVerAlignBottom : "Dưới", -DlgCellVerAlignBaseline : "Đường cơ sở", -DlgCellType : "Cell Type", //MISSING -DlgCellTypeData : "Data", //MISSING -DlgCellTypeHeader : "Header", //MISSING +DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Nối Hàng", DlgCellCollSpan : "Nối Cột", DlgCellBackColor : "Màu nền", DlgCellBorderColor : "Màu viền", DlgCellBtnSelect : "Chọn...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "Tìm kiếm và Thay Thế", - // Find Dialog DlgFindTitle : "Tìm kiếm", DlgFindFindBtn : "Tìm kiếm", @@ -372,6 +347,7 @@ DlgPasteMsg2 : "Hãy dán nội dung vào trong khung bên dưới, sử dụng DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Chấp nhận các định dạng phông", DlgPasteRemoveStyles : "Gỡ bỏ các định dạng Styles", +DlgPasteCleanBox : "Xóa nội dung", // Color Picker ColorAutomatic : "Tự động", @@ -383,7 +359,7 @@ DocProps : "Thuộc tính Tài liệu", // Anchor Dialog DlgAnchorTitle : "Thuộc tính Neo", DlgAnchorName : "Tên của Neo", -DlgAnchorErrorName : "Hãy nhập vào tên của Neo", +DlgAnchorErrorName : "Hãy đưa vào tên của Neo", // Speller Pages Dialog DlgSpellNotInDic : "Không có trong từ điển", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "Giới thiệu", DlgAboutBrowserInfoTab : "Thông tin trình duyệt", DlgAboutLicenseTab : "Giấy phép", DlgAboutVersion : "phiên bản", -DlgAboutInfo : "Để biết thêm thông tin, hãy truy cập", - -// Div Dialog -DlgDivGeneralTab : "Chung", -DlgDivAdvancedTab : "Nâng cao", -DlgDivStyle : "Kiểu Style", -DlgDivInlineStyle : "Kiểu Style Trực tiếp", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "Để biết thêm thông tin, hãy truy cập" +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/zh-cn.js b/httemplate/elements/fckeditor/editor/lang/zh-cn.js index 256852b24..6d6f4f411 100644 --- a/httemplate/elements/fckeditor/editor/lang/zh-cn.js +++ b/httemplate/elements/fckeditor/editor/lang/zh-cn.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "清除格式", InsertLinkLbl : "超链接", InsertLink : "插入/编辑超链接", RemoveLink : "取消超链接", -VisitLink : "打开超链接", Anchor : "插入/编辑锚点链接", -AnchorDelete : "清除锚点链接", InsertImageLbl : "图象", InsertImage : "插入/编辑图象", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "右对齐", BlockJustify : "两端对齐", DecreaseIndent : "减少缩进量", IncreaseIndent : "增加缩进量", -Blockquote : "块引用", -CreateDiv : "插入 Div 标签", -EditDiv : "编辑 Div 标签", -DeleteDiv : "删除 Div 标签", Undo : "撤消", Redo : "重做", NumberedListLbl : "编号列表", @@ -109,27 +103,20 @@ SelectionField : "列表/菜单", ImageButton : "图像域", FitWindow : "全屏编辑", -ShowBlocks : "显示区块", // Context Menu EditLink : "编辑超链接", CellCM : "单元格", RowCM : "行", ColumnCM : "列", -InsertRowAfter : "在下方插入行", -InsertRowBefore : "在上方插入行", +InsertRow : "插入行", DeleteRows : "删除行", -InsertColumnAfter : "在右侧插入列", -InsertColumnBefore : "在左侧插入列", +InsertColumn : "插入列", DeleteColumns : "删除列", -InsertCellAfter : "在右侧插入单元格", -InsertCellBefore : "在左侧插入单元格", +InsertCell : "插入单元格", DeleteCells : "删除单元格", MergeCells : "合并单元格", -MergeRight : "向右合并单元格", -MergeDown : "向下合并单元格", -HorizontalSplitCell : "水平拆分单元格", -VerticalSplitCell : "垂直拆分单元格", +SplitCell : "拆分单元格", TableDelete : "删除表格", CellProperties : "单元格属性", TableProperties : "表格属性", @@ -147,7 +134,7 @@ SelectionFieldProp : "菜单/列表属性", TextareaProp : "多行文本属性", FormProp : "表单属性", -FontFormats : "普通;已编排格式;地址;标题 1;标题 2;标题 3;标题 4;标题 5;标题 6;段落(DIV)", +FontFormats : "普通;已编排格式;地址;标题 1;标题 2;标题 3;标题 4;标题 5;标题 6;段落(DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "正在处理 XHTML,请稍等...", @@ -161,7 +148,6 @@ UnknownToolbarSet : "工具栏设置 \"%1\" 不存在", NoActiveX : "浏览器安全设置限制了本编辑器的某些功能。您必须启用安全设置中的“运行 ActiveX 控件和插件”,否则将出现某些错误并缺少功能。", BrowseServerBlocked : "无法打开资源浏览器,请确认是否启用了禁止弹出窗口。", DialogBlocked : "无法打开对话框窗口,请确认是否启用了禁止弹出窗口或网页对话框(IE)。", -VisitLinkBlocked : "无法打开新窗口,请确认是否启用了禁止弹出窗口或网页对话框(IE)。", // Dialogs DlgBtnOK : "确定", @@ -243,7 +229,7 @@ DlgLnkURL : "地址", DlgLnkAnchorSel : "选择一个锚点", DlgLnkAnchorByName : "按锚点名称", DlgLnkAnchorById : "按锚点 ID", -DlgLnkNoAnchors : "(此文档没有可用的锚点)", +DlgLnkNoAnchors : "<此文档没有可用的锚点>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "地址", DlgLnkEMailSubject : "主题", DlgLnkEMailBody : "内容", @@ -308,11 +294,6 @@ DlgTableCellSpace : "间距", DlgTableCellPad : "边距", DlgTableCaption : "标题", DlgTableSummary : "摘要", -DlgTableHeaders : "标题单元格", -DlgTableHeadersNone : "无", -DlgTableHeadersColumn : "第一列", -DlgTableHeadersRow : "第一行", -DlgTableHeadersBoth : "第一列和第一行", // Table Cell Dialog DlgCellTitle : "单元格属性", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "顶端", DlgCellVerAlignMiddle : "居中", DlgCellVerAlignBottom : "底部", DlgCellVerAlignBaseline : "基线", -DlgCellType : "单元格类型", -DlgCellTypeData : "资料", -DlgCellTypeHeader : "标题", DlgCellRowSpan : "纵跨行数", DlgCellCollSpan : "横跨列数", DlgCellBackColor : "背景颜色", DlgCellBorderColor : "边框颜色", DlgCellBtnSelect : "选择...", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "查找和替换", - // Find Dialog DlgFindTitle : "查找", DlgFindFindBtn : "查找", @@ -369,9 +344,10 @@ PasteAsText : "粘贴为无格式文本", PasteFromWord : "从 MS Word 粘贴", DlgPasteMsg2 : "请使用键盘快捷键(Ctrl+V)把内容粘贴到下面的方框里,再按 确定。", -DlgPasteSec : "因为你的浏览器的安全设置原因,本编辑器不能直接访问你的剪贴板内容,你需要在本窗口重新粘贴一次。", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "忽略 Font 标签", DlgPasteRemoveStyles : "清理 CSS 样式", +DlgPasteCleanBox : "清空上面内容", // Color Picker ColorAutomatic : "自动", @@ -514,7 +490,7 @@ DlgDocPreview : "预览", // Templates Dialog Templates : "模板", DlgTemplatesTitle : "内容模板", -DlgTemplatesSelMsg : "请选择编辑器内容模板:", +DlgTemplatesSelMsg : "请选择编辑器内容模板
(当前内容将会被清除替换):", DlgTemplatesLoading : "正在加载模板列表,请稍等...", DlgTemplatesNoTpl : "(没有模板)", DlgTemplatesReplace : "替换当前内容", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "关于", DlgAboutBrowserInfoTab : "浏览器信息", DlgAboutLicenseTab : "许可证", DlgAboutVersion : "版本", -DlgAboutInfo : "要获得更多信息请访问 ", - -// Div Dialog -DlgDivGeneralTab : "常规", -DlgDivAdvancedTab : "高级", -DlgDivStyle : "样式", -DlgDivInlineStyle : "CSS 样式", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "要获得更多信息请访问 " +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/lang/zh.js b/httemplate/elements/fckeditor/editor/lang/zh.js index 8d4782939..b5cd2397e 100644 --- a/httemplate/elements/fckeditor/editor/lang/zh.js +++ b/httemplate/elements/fckeditor/editor/lang/zh.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -44,9 +44,7 @@ RemoveFormat : "清除格式", InsertLinkLbl : "超連結", InsertLink : "插入/編輯超連結", RemoveLink : "移除超連結", -VisitLink : "開啟超連結", Anchor : "插入/編輯錨點", -AnchorDelete : "移除錨點", InsertImageLbl : "影像", InsertImage : "插入/編輯影像", InsertFlashLbl : "Flash", @@ -72,10 +70,6 @@ RightJustify : "靠右對齊", BlockJustify : "左右對齊", DecreaseIndent : "減少縮排", IncreaseIndent : "增加縮排", -Blockquote : "引用文字", -CreateDiv : "新增 Div 標籤", -EditDiv : "變更 Div 標籤", -DeleteDiv : "移除 Div 標籤", Undo : "復原", Redo : "重複", NumberedListLbl : "編號清單", @@ -109,27 +103,20 @@ SelectionField : "清單/選單", ImageButton : "影像按鈕", FitWindow : "編輯器最大化", -ShowBlocks : "顯示區塊", // Context Menu EditLink : "編輯超連結", CellCM : "儲存格", RowCM : "列", ColumnCM : "欄", -InsertRowAfter : "向下插入列", -InsertRowBefore : "向上插入列", +InsertRow : "插入列", DeleteRows : "刪除列", -InsertColumnAfter : "向右插入欄", -InsertColumnBefore : "向左插入欄", +InsertColumn : "插入欄", DeleteColumns : "刪除欄", -InsertCellAfter : "向右插入儲存格", -InsertCellBefore : "向左插入儲存格", +InsertCell : "插入儲存格", DeleteCells : "刪除儲存格", MergeCells : "合併儲存格", -MergeRight : "向右合併儲存格", -MergeDown : "向下合併儲存格", -HorizontalSplitCell : "橫向分割儲存格", -VerticalSplitCell : "縱向分割儲存格", +SplitCell : "分割儲存格", TableDelete : "刪除表格", CellProperties : "儲存格屬性", TableProperties : "表格屬性", @@ -147,7 +134,7 @@ SelectionFieldProp : "清單/選單屬性", TextareaProp : "文字區域屬性", FormProp : "表單屬性", -FontFormats : "一般;已格式化;位址;標題 1;標題 2;標題 3;標題 4;標題 5;標題 6;一般 (DIV)", +FontFormats : "本文;已格式化;位址;標題 1;標題 2;標題 3;標題 4;標題 5;標題 6;本文 (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "處理 XHTML 中,請稍候…", @@ -161,7 +148,6 @@ UnknownToolbarSet : "工具列設定 \"%1\" 不存在", NoActiveX : "瀏覽器的安全性設定限制了本編輯器的某些功能。您必須啟用安全性設定中的「執行ActiveX控制項與外掛程式」項目,否則本編輯器將會出現錯誤並缺少某些功能", BrowseServerBlocked : "無法開啟資源瀏覽器,請確定所有快顯視窗封鎖程式是否關閉", DialogBlocked : "無法開啟對話視窗,請確定所有快顯視窗封鎖程式是否關閉", -VisitLinkBlocked : "無法開啟新視窗,請確定所有快顯視窗封鎖程式是否關閉", // Dialogs DlgBtnOK : "確定", @@ -243,7 +229,7 @@ DlgLnkURL : "URL", DlgLnkAnchorSel : "請選擇錨點", DlgLnkAnchorByName : "依錨點名稱", DlgLnkAnchorById : "依元件 ID", -DlgLnkNoAnchors : "(本文件尚無可用之錨點)", +DlgLnkNoAnchors : "<本文件尚無可用之錨點>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "電子郵件", DlgLnkEMailSubject : "郵件主旨", DlgLnkEMailBody : "郵件內容", @@ -308,11 +294,6 @@ DlgTableCellSpace : "間距", DlgTableCellPad : "內距", DlgTableCaption : "標題", DlgTableSummary : "摘要", -DlgTableHeaders : "Headers", //MISSING -DlgTableHeadersNone : "None", //MISSING -DlgTableHeadersColumn : "First column", //MISSING -DlgTableHeadersRow : "First Row", //MISSING -DlgTableHeadersBoth : "Both", //MISSING // Table Cell Dialog DlgCellTitle : "儲存格屬性", @@ -335,18 +316,12 @@ DlgCellVerAlignTop : "靠上對齊", DlgCellVerAlignMiddle : "置中", DlgCellVerAlignBottom : "靠下對齊", DlgCellVerAlignBaseline : "基準線", -DlgCellType : "儲存格類型", -DlgCellTypeData : "資料", -DlgCellTypeHeader : "標題", DlgCellRowSpan : "合併列數", DlgCellCollSpan : "合併欄数", DlgCellBackColor : "背景顏色", DlgCellBorderColor : "邊框顏色", DlgCellBtnSelect : "請選擇…", -// Find and Replace Dialog -DlgFindAndReplaceTitle : "尋找與取代", - // Find Dialog DlgFindTitle : "尋找", DlgFindFindBtn : "尋找", @@ -369,9 +344,10 @@ PasteAsText : "貼為純文字格式", PasteFromWord : "自 Word 貼上", DlgPasteMsg2 : "請使用快捷鍵 (Ctrl+V) 貼到下方區域中並按下 確定", -DlgPasteSec : "因為瀏覽器的安全性設定,本編輯器無法直接存取您的剪貼簿資料,請您自行在本視窗進行貼上動作。", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "移除字型設定", DlgPasteRemoveStyles : "移除樣式設定", +DlgPasteCleanBox : "清除文字區域", // Color Picker ColorAutomatic : "自動", @@ -524,16 +500,5 @@ DlgAboutAboutTab : "關於", DlgAboutBrowserInfoTab : "瀏覽器資訊", DlgAboutLicenseTab : "許可證", DlgAboutVersion : "版本", -DlgAboutInfo : "想獲得更多資訊請至 ", - -// Div Dialog -DlgDivGeneralTab : "一般", -DlgDivAdvancedTab : "進階", -DlgDivStyle : "樣式", -DlgDivInlineStyle : "CSS 樣式", - -ScaytTitle : "SCAYT", //MISSING -ScaytTitleOptions : "Options", //MISSING -ScaytTitleLangs : "Languages", //MISSING -ScaytTitleAbout : "About" //MISSING -}; +DlgAboutInfo : "想獲得更多資訊請至 " +}; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/plugins/autogrow/fckplugin.js b/httemplate/elements/fckeditor/editor/plugins/autogrow/fckplugin.js index 1df2d0ffd..7ce1c1cc2 100644 --- a/httemplate/elements/fckeditor/editor/plugins/autogrow/fckplugin.js +++ b/httemplate/elements/fckeditor/editor/plugins/autogrow/fckplugin.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -22,90 +22,71 @@ * height (FCKConfig.AutoGrowMax), based on its contents. */ -var FCKAutoGrow = { - MIN_HEIGHT : window.frameElement.offsetHeight, +var FCKAutoGrow_Min = window.frameElement.offsetHeight ; - Check : function() - { - var delta = FCKAutoGrow.GetHeightDelta() ; - if ( delta != 0 ) - { - var newHeight = window.frameElement.offsetHeight + delta ; - - newHeight = FCKAutoGrow.GetEffectiveHeight( newHeight ) ; +function FCKAutoGrow_Check() +{ + var oInnerDoc = FCK.EditorDocument ; - if ( newHeight != window.frameElement.height ) - { - window.frameElement.style.height = newHeight + "px" ; - - // Gecko browsers use an onresize handler to update the innermost - // IFRAME's height. If the document is modified before the onresize - // is triggered, the plugin will miscalculate the new height. Thus, - // forcibly trigger onresize. #1336 - if ( typeof window.onresize == 'function' ) - { - window.onresize() ; - } - } - } - }, + var iFrameHeight, iInnerHeight ; - CheckEditorStatus : function( sender, status ) + if ( FCKBrowserInfo.IsIE ) { - if ( status == FCK_STATUS_COMPLETE ) - FCKAutoGrow.Check() ; - }, - - GetEffectiveHeight : function( height ) + iFrameHeight = FCK.EditorWindow.frameElement.offsetHeight ; + iInnerHeight = oInnerDoc.body.scrollHeight ; + } + else { - if ( height < FCKAutoGrow.MIN_HEIGHT ) - height = FCKAutoGrow.MIN_HEIGHT; - else - { - var max = FCKConfig.AutoGrowMax; - if ( max && max > 0 && height > max ) - height = max; - } + iFrameHeight = FCK.EditorWindow.innerHeight ; + iInnerHeight = oInnerDoc.body.offsetHeight ; + } - return height; - }, + var iDiff = iInnerHeight - iFrameHeight ; - GetHeightDelta : function() + if ( iDiff != 0 ) { - var oInnerDoc = FCK.EditorDocument ; - - var iFrameHeight ; - var iInnerHeight ; + var iMainFrameSize = window.frameElement.offsetHeight ; - if ( FCKBrowserInfo.IsIE ) + if ( iDiff > 0 && iMainFrameSize < FCKConfig.AutoGrowMax ) { - iFrameHeight = FCK.EditorWindow.frameElement.offsetHeight ; - iInnerHeight = oInnerDoc.body.scrollHeight ; + iMainFrameSize += iDiff ; + if ( iMainFrameSize > FCKConfig.AutoGrowMax ) + iMainFrameSize = FCKConfig.AutoGrowMax ; } - else + else if ( iDiff < 0 && iMainFrameSize > FCKAutoGrow_Min ) { - iFrameHeight = FCK.EditorWindow.innerHeight ; - iInnerHeight = oInnerDoc.body.offsetHeight + - ( parseInt( FCKDomTools.GetCurrentElementStyle( oInnerDoc.body, 'margin-top' ), 10 ) || 0 ) + - ( parseInt( FCKDomTools.GetCurrentElementStyle( oInnerDoc.body, 'margin-bottom' ), 10 ) || 0 ) ; + iMainFrameSize += iDiff ; + if ( iMainFrameSize < FCKAutoGrow_Min ) + iMainFrameSize = FCKAutoGrow_Min ; } - - return iInnerHeight - iFrameHeight ; - }, - - SetListeners : function() - { - if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG ) + else return ; - FCK.EditorWindow.attachEvent( 'onscroll', FCKAutoGrow.Check ) ; - FCK.EditorDocument.attachEvent( 'onkeyup', FCKAutoGrow.Check ) ; + window.frameElement.height = iMainFrameSize ; } -}; +} -FCK.AttachToOnSelectionChange( FCKAutoGrow.Check ) ; +FCK.AttachToOnSelectionChange( FCKAutoGrow_Check ) ; -if ( FCKBrowserInfo.IsIE ) - FCK.Events.AttachEvent( 'OnAfterSetHTML', FCKAutoGrow.SetListeners ) ; +function FCKAutoGrow_SetListeners() +{ + if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG ) + return ; -FCK.Events.AttachEvent( 'OnStatusChange', FCKAutoGrow.CheckEditorStatus ) ; + FCK.EditorWindow.attachEvent( 'onscroll', FCKAutoGrow_Check ) ; + FCK.EditorDocument.attachEvent( 'onkeyup', FCKAutoGrow_Check ) ; +} + +if ( FCKBrowserInfo.IsIE ) +{ +// FCKAutoGrow_SetListeners() ; + FCK.Events.AttachEvent( 'OnAfterSetHTML', FCKAutoGrow_SetListeners ) ; +} + +function FCKAutoGrow_CheckEditorStatus( sender, status ) +{ + if ( status == FCK_STATUS_COMPLETE ) + FCKAutoGrow_Check() ; +} + +FCK.Events.AttachEvent( 'OnStatusChange', FCKAutoGrow_CheckEditorStatus ) ; \ No newline at end of file diff --git a/httemplate/elements/fckeditor/editor/plugins/bbcode/fckplugin.js b/httemplate/elements/fckeditor/editor/plugins/bbcode/fckplugin.js deleted file mode 100644 index f9521ddac..000000000 --- a/httemplate/elements/fckeditor/editor/plugins/bbcode/fckplugin.js +++ /dev/null @@ -1,123 +0,0 @@ -/* - * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben - * - * == BEGIN LICENSE == - * - * Licensed under the terms of any of the following licenses at your - * choice: - * - * - GNU General Public License Version 2 or later (the "GPL") - * http://www.gnu.org/licenses/gpl.html - * - * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") - * http://www.gnu.org/licenses/lgpl.html - * - * - Mozilla Public License Version 1.1 or later (the "MPL") - * http://www.mozilla.org/MPL/MPL-1.1.html - * - * == END LICENSE == - * - * This is a sample implementation for a custom Data Processor for basic BBCode. - */ - -FCK.DataProcessor = -{ - /* - * Returns a string representing the HTML format of "data". The returned - * value will be loaded in the editor. - * The HTML must be from to , eventually including - * the DOCTYPE. - * @param {String} data The data to be converted in the - * DataProcessor specific format. - */ - ConvertToHtml : function( data ) - { - // Convert < and > to their HTML entities. - data = data.replace( //g, '>' ) ; - - // Convert line breaks to
. - data = data.replace( /(?:\r\n|\n|\r)/g, '
' ) ; - - // [url] - data = data.replace( /\[url\](.+?)\[\/url]/gi, '$1' ) ; - data = data.replace( /\[url\=([^\]]+)](.+?)\[\/url]/gi, '$2' ) ; - - // [b] - data = data.replace( /\[b\](.+?)\[\/b]/gi, '$1' ) ; - - // [i] - data = data.replace( /\[i\](.+?)\[\/i]/gi, '$1' ) ; - - // [u] - data = data.replace( /\[u\](.+?)\[\/u]/gi, '$1' ) ; - - return '' + data + '' ; - }, - - /* - * Converts a DOM (sub-)tree to a string in the data format. - * @param {Object} rootNode The node that contains the DOM tree to be - * converted to the data format. - * @param {Boolean} excludeRoot Indicates that the root node must not - * be included in the conversion, only its children. - * @param {Boolean} format Indicates that the data must be formatted - * for human reading. Not all Data Processors may provide it. - */ - ConvertToDataFormat : function( rootNode, excludeRoot, ignoreIfEmptyParagraph, format ) - { - var data = rootNode.innerHTML ; - - // Convert
to line breaks. - data = data.replace( /]).*?>/gi, '\r\n') ; - - // [url] - data = data.replace( /(.+?)<\/a>/gi, '[url=$2]$3[/url]') ; - - // [b] - data = data.replace( /<(?:b|strong)>/gi, '[b]') ; - data = data.replace( /<\/(?:b|strong)>/gi, '[/b]') ; - - // [i] - data = data.replace( /<(?:i|em)>/gi, '[i]') ; - data = data.replace( /<\/(?:i|em)>/gi, '[/i]') ; - - // [u] - data = data.replace( //gi, '[u]') ; - data = data.replace( /<\/u>/gi, '[/u]') ; - - // Remove remaining tags. - data = data.replace( /<[^>]+>/g, '') ; - - return data ; - }, - - /* - * Makes any necessary changes to a piece of HTML for insertion in the - * editor selection position. - * @param {String} html The HTML to be fixed. - */ - FixHtml : function( html ) - { - return html ; - } -} ; - -// This Data Processor doesn't support

, so let's use
. -FCKConfig.EnterMode = 'br' ; - -// To avoid pasting invalid markup (which is discarded in any case), let's -// force pasting to plain text. -FCKConfig.ForcePasteAsPlainText = true ; - -// Rename the "Source" buttom to "BBCode". -FCKToolbarItems.RegisterItem( 'Source', new FCKToolbarButton( 'Source', 'BBCode', null, FCK_TOOLBARITEM_ICONTEXT, true, true, 1 ) ) ; - -// Let's enforce the toolbar to the limits of this Data Processor. A custom -// toolbar set may be defined in the configuration file with more or less entries. -FCKConfig.ToolbarSets["Default"] = [ - ['Source'], - ['Bold','Italic','Underline','-','Link'], - ['About'] -] ; diff --git a/httemplate/elements/fckeditor/editor/plugins/dragresizetable/fckplugin.js b/httemplate/elements/fckeditor/editor/plugins/dragresizetable/fckplugin.js deleted file mode 100644 index 87061ff64..000000000 --- a/httemplate/elements/fckeditor/editor/plugins/dragresizetable/fckplugin.js +++ /dev/null @@ -1,529 +0,0 @@ -var FCKDragTableHandler = -{ - "_DragState" : 0, - "_LeftCell" : null, - "_RightCell" : null, - "_MouseMoveMode" : 0, // 0 - find candidate cells for resizing, 1 - drag to resize - "_ResizeBar" : null, - "_OriginalX" : null, - "_MinimumX" : null, - "_MaximumX" : null, - "_LastX" : null, - "_TableMap" : null, - "_doc" : document, - "_IsInsideNode" : function( w, domNode, pos ) - { - var myCoords = FCKTools.GetWindowPosition( w, domNode ) ; - var xMin = myCoords.x ; - var yMin = myCoords.y ; - var xMax = parseInt( xMin, 10 ) + parseInt( domNode.offsetWidth, 10 ) ; - var yMax = parseInt( yMin, 10 ) + parseInt( domNode.offsetHeight, 10 ) ; - if ( pos.x >= xMin && pos.x <= xMax && pos.y >= yMin && pos.y <= yMax ) - return true; - return false; - }, - "_GetBorderCells" : function( w, tableNode, tableMap, mouse ) - { - // Enumerate all the cells in the table. - var cells = [] ; - for ( var i = 0 ; i < tableNode.rows.length ; i++ ) - { - var r = tableNode.rows[i] ; - for ( var j = 0 ; j < r.cells.length ; j++ ) - cells.push( r.cells[j] ) ; - } - - if ( cells.length < 1 ) - return null ; - - // Get the cells whose right or left border is nearest to the mouse cursor's x coordinate. - var minRxDist = null ; - var lxDist = null ; - var minYDist = null ; - var rbCell = null ; - var lbCell = null ; - for ( var i = 0 ; i < cells.length ; i++ ) - { - var pos = FCKTools.GetWindowPosition( w, cells[i] ) ; - var rightX = pos.x + parseInt( cells[i].clientWidth, 10 ) ; - var rxDist = mouse.x - rightX ; - var yDist = mouse.y - ( pos.y + ( cells[i].clientHeight / 2 ) ) ; - if ( minRxDist == null || - ( Math.abs( rxDist ) <= Math.abs( minRxDist ) && - ( minYDist == null || Math.abs( yDist ) <= Math.abs( minYDist ) ) ) ) - { - minRxDist = rxDist ; - minYDist = yDist ; - rbCell = cells[i] ; - } - } - /* - var rowNode = FCKTools.GetElementAscensor( rbCell, "tr" ) ; - var cellIndex = rbCell.cellIndex + 1 ; - if ( cellIndex >= rowNode.cells.length ) - return null ; - lbCell = rowNode.cells.item( cellIndex ) ; - */ - var rowIdx = rbCell.parentNode.rowIndex ; - var colIdx = FCKTableHandler._GetCellIndexSpan( tableMap, rowIdx, rbCell ) ; - var colSpan = isNaN( rbCell.colSpan ) ? 1 : rbCell.colSpan ; - lbCell = tableMap[rowIdx][colIdx + colSpan] ; - - if ( ! lbCell ) - return null ; - - // Abort if too far from the border. - lxDist = mouse.x - FCKTools.GetWindowPosition( w, lbCell ).x ; - if ( lxDist < 0 && minRxDist < 0 && minRxDist < -2 ) - return null ; - if ( lxDist > 0 && minRxDist > 0 && lxDist > 3 ) - return null ; - - return { "leftCell" : rbCell, "rightCell" : lbCell } ; - }, - "_GetResizeBarPosition" : function() - { - var row = FCKTools.GetElementAscensor( this._RightCell, "tr" ) ; - return FCKTableHandler._GetCellIndexSpan( this._TableMap, row.rowIndex, this._RightCell ) ; - }, - "_ResizeBarMouseDownListener" : function( evt ) - { - if ( FCKDragTableHandler._LeftCell ) - FCKDragTableHandler._MouseMoveMode = 1 ; - if ( FCKBrowserInfo.IsIE ) - FCKDragTableHandler._ResizeBar.filters.item("DXImageTransform.Microsoft.Alpha").opacity = 50 ; - else - FCKDragTableHandler._ResizeBar.style.opacity = 0.5 ; - FCKDragTableHandler._OriginalX = evt.clientX ; - - // Calculate maximum and minimum x-coordinate delta. - var borderIndex = FCKDragTableHandler._GetResizeBarPosition() ; - var offset = FCKDragTableHandler._GetIframeOffset(); - var table = FCKTools.GetElementAscensor( FCKDragTableHandler._LeftCell, "table" ); - var minX = null ; - var maxX = null ; - for ( var r = 0 ; r < FCKDragTableHandler._TableMap.length ; r++ ) - { - var leftCell = FCKDragTableHandler._TableMap[r][borderIndex - 1] ; - var rightCell = FCKDragTableHandler._TableMap[r][borderIndex] ; - var leftPosition = FCKTools.GetWindowPosition( FCK.EditorWindow, leftCell ) ; - var rightPosition = FCKTools.GetWindowPosition( FCK.EditorWindow, rightCell ) ; - var leftPadding = FCKDragTableHandler._GetCellPadding( table, leftCell ) ; - var rightPadding = FCKDragTableHandler._GetCellPadding( table, rightCell ) ; - if ( minX == null || leftPosition.x + leftPadding > minX ) - minX = leftPosition.x + leftPadding ; - if ( maxX == null || rightPosition.x + rightCell.clientWidth - rightPadding < maxX ) - maxX = rightPosition.x + rightCell.clientWidth - rightPadding ; - } - - FCKDragTableHandler._MinimumX = minX + offset.x ; - FCKDragTableHandler._MaximumX = maxX + offset.x ; - FCKDragTableHandler._LastX = null ; - - if (evt.preventDefault) - evt.preventDefault(); - else - evt.returnValue = false; - }, - "_ResizeBarMouseUpListener" : function( evt ) - { - FCKDragTableHandler._MouseMoveMode = 0 ; - FCKDragTableHandler._HideResizeBar() ; - - if ( FCKDragTableHandler._LastX == null ) - return ; - - // Calculate the delta value. - var deltaX = FCKDragTableHandler._LastX - FCKDragTableHandler._OriginalX ; - - // Then, build an array of current column width values. - // This algorithm can be very slow if the cells have insane colSpan values. (e.g. colSpan=1000). - var table = FCKTools.GetElementAscensor( FCKDragTableHandler._LeftCell, "table" ) ; - var colArray = [] ; - var tableMap = FCKDragTableHandler._TableMap ; - for ( var i = 0 ; i < tableMap.length ; i++ ) - { - for ( var j = 0 ; j < tableMap[i].length ; j++ ) - { - var cell = tableMap[i][j] ; - var width = FCKDragTableHandler._GetCellWidth( table, cell ) ; - var colSpan = isNaN( cell.colSpan) ? 1 : cell.colSpan ; - if ( colArray.length <= j ) - colArray.push( { width : width / colSpan, colSpan : colSpan } ) ; - else - { - var guessItem = colArray[j] ; - if ( guessItem.colSpan > colSpan ) - { - guessItem.width = width / colSpan ; - guessItem.colSpan = colSpan ; - } - } - } - } - - // Find out the equivalent column index of the two cells selected for resizing. - colIndex = FCKDragTableHandler._GetResizeBarPosition() ; - - // Note that colIndex must be at least 1 here, so it's safe to subtract 1 from it. - colIndex-- ; - - // Modify the widths in the colArray according to the mouse coordinate delta value. - colArray[colIndex].width += deltaX ; - colArray[colIndex + 1].width -= deltaX ; - - // Clear all cell widths, delete all elements from the table. - for ( var r = 0 ; r < table.rows.length ; r++ ) - { - var row = table.rows.item( r ) ; - for ( var c = 0 ; c < row.cells.length ; c++ ) - { - var cell = row.cells.item( c ) ; - cell.width = "" ; - cell.style.width = "" ; - } - } - var colElements = table.getElementsByTagName( "col" ) ; - for ( var i = colElements.length - 1 ; i >= 0 ; i-- ) - colElements[i].parentNode.removeChild( colElements[i] ) ; - - // Set new cell widths. - var processedCells = [] ; - for ( var i = 0 ; i < tableMap.length ; i++ ) - { - for ( var j = 0 ; j < tableMap[i].length ; j++ ) - { - var cell = tableMap[i][j] ; - if ( cell._Processed ) - continue ; - if ( tableMap[i][j-1] != cell ) - cell.width = colArray[j].width ; - else - cell.width = parseInt( cell.width, 10 ) + parseInt( colArray[j].width, 10 ) ; - if ( tableMap[i][j+1] != cell ) - { - processedCells.push( cell ) ; - cell._Processed = true ; - } - } - } - for ( var i = 0 ; i < processedCells.length ; i++ ) - { - if ( FCKBrowserInfo.IsIE ) - processedCells[i].removeAttribute( '_Processed' ) ; - else - delete processedCells[i]._Processed ; - } - - FCKDragTableHandler._LastX = null ; - }, - "_ResizeBarMouseMoveListener" : function( evt ) - { - if ( FCKDragTableHandler._MouseMoveMode == 0 ) - return FCKDragTableHandler._MouseFindHandler( FCK, evt ) ; - else - return FCKDragTableHandler._MouseDragHandler( FCK, evt ) ; - }, - // Calculate the padding of a table cell. - // It returns the value of paddingLeft + paddingRight of a table cell. - // This function is used, in part, to calculate the width parameter that should be used for setting cell widths. - // The equation in question is clientWidth = paddingLeft + paddingRight + width. - // So that width = clientWidth - paddingLeft - paddingRight. - // The return value of this function must be pixel accurate acorss all supported browsers, so be careful if you need to modify it. - "_GetCellPadding" : function( table, cell ) - { - var attrGuess = parseInt( table.cellPadding, 10 ) * 2 ; - var cssGuess = null ; - if ( typeof( window.getComputedStyle ) == "function" ) - { - var styleObj = window.getComputedStyle( cell, null ) ; - cssGuess = parseInt( styleObj.getPropertyValue( "padding-left" ), 10 ) + - parseInt( styleObj.getPropertyValue( "padding-right" ), 10 ) ; - } - else - cssGuess = parseInt( cell.currentStyle.paddingLeft, 10 ) + parseInt (cell.currentStyle.paddingRight, 10 ) ; - - var cssRuntime = cell.style.padding ; - if ( isFinite( cssRuntime ) ) - cssGuess = parseInt( cssRuntime, 10 ) * 2 ; - else - { - cssRuntime = cell.style.paddingLeft ; - if ( isFinite( cssRuntime ) ) - cssGuess = parseInt( cssRuntime, 10 ) ; - cssRuntime = cell.style.paddingRight ; - if ( isFinite( cssRuntime ) ) - cssGuess += parseInt( cssRuntime, 10 ) ; - } - - attrGuess = parseInt( attrGuess, 10 ) ; - cssGuess = parseInt( cssGuess, 10 ) ; - if ( isNaN( attrGuess ) ) - attrGuess = 0 ; - if ( isNaN( cssGuess ) ) - cssGuess = 0 ; - return Math.max( attrGuess, cssGuess ) ; - }, - // Calculate the real width of the table cell. - // The real width of the table cell is the pixel width that you can set to the width attribute of the table cell and after - // that, the table cell should be of exactly the same width as before. - // The real width of a table cell can be calculated as: - // width = clientWidth - paddingLeft - paddingRight. - "_GetCellWidth" : function( table, cell ) - { - var clientWidth = cell.clientWidth ; - if ( isNaN( clientWidth ) ) - clientWidth = 0 ; - return clientWidth - this._GetCellPadding( table, cell ) ; - }, - "MouseMoveListener" : function( FCK, evt ) - { - if ( FCKDragTableHandler._MouseMoveMode == 0 ) - return FCKDragTableHandler._MouseFindHandler( FCK, evt ) ; - else - return FCKDragTableHandler._MouseDragHandler( FCK, evt ) ; - }, - "_MouseFindHandler" : function( FCK, evt ) - { - if ( FCK.MouseDownFlag ) - return ; - var node = evt.srcElement || evt.target ; - try - { - if ( ! node || node.nodeType != 1 ) - { - this._HideResizeBar() ; - return ; - } - } - catch ( e ) - { - this._HideResizeBar() ; - return ; - } - - // Since this function might be called from the editing area iframe or the outer fckeditor iframe, - // the mouse point coordinates from evt.clientX/Y can have different reference points. - // We need to resolve the mouse pointer position relative to the editing area iframe. - var mouseX = evt.clientX ; - var mouseY = evt.clientY ; - if ( FCKTools.GetElementDocument( node ) == document ) - { - var offset = this._GetIframeOffset() ; - mouseX -= offset.x ; - mouseY -= offset.y ; - } - - - if ( this._ResizeBar && this._LeftCell ) - { - var leftPos = FCKTools.GetWindowPosition( FCK.EditorWindow, this._LeftCell ) ; - var rightPos = FCKTools.GetWindowPosition( FCK.EditorWindow, this._RightCell ) ; - var rxDist = mouseX - ( leftPos.x + this._LeftCell.clientWidth ) ; - var lxDist = mouseX - rightPos.x ; - var inRangeFlag = false ; - if ( lxDist >= 0 && rxDist <= 0 ) - inRangeFlag = true ; - else if ( rxDist > 0 && lxDist <= 3 ) - inRangeFlag = true ; - else if ( lxDist < 0 && rxDist >= -2 ) - inRangeFlag = true ; - if ( inRangeFlag ) - { - this._ShowResizeBar( FCK.EditorWindow, - FCKTools.GetElementAscensor( this._LeftCell, "table" ), - { "x" : mouseX, "y" : mouseY } ) ; - return ; - } - } - - var tagName = node.tagName.toLowerCase() ; - if ( tagName != "table" && tagName != "td" && tagName != "th" ) - { - if ( this._LeftCell ) - this._LeftCell = this._RightCell = this._TableMap = null ; - this._HideResizeBar() ; - return ; - } - node = FCKTools.GetElementAscensor( node, "table" ) ; - var tableMap = FCKTableHandler._CreateTableMap( node ) ; - var cellTuple = this._GetBorderCells( FCK.EditorWindow, node, tableMap, { "x" : mouseX, "y" : mouseY } ) ; - - if ( cellTuple == null ) - { - if ( this._LeftCell ) - this._LeftCell = this._RightCell = this._TableMap = null ; - this._HideResizeBar() ; - } - else - { - this._LeftCell = cellTuple["leftCell"] ; - this._RightCell = cellTuple["rightCell"] ; - this._TableMap = tableMap ; - this._ShowResizeBar( FCK.EditorWindow, - FCKTools.GetElementAscensor( this._LeftCell, "table" ), - { "x" : mouseX, "y" : mouseY } ) ; - } - }, - "_MouseDragHandler" : function( FCK, evt ) - { - var mouse = { "x" : evt.clientX, "y" : evt.clientY } ; - - // Convert mouse coordinates in reference to the outer iframe. - var node = evt.srcElement || evt.target ; - if ( FCKTools.GetElementDocument( node ) == FCK.EditorDocument ) - { - var offset = this._GetIframeOffset() ; - mouse.x += offset.x ; - mouse.y += offset.y ; - } - - // Calculate the mouse position delta and see if we've gone out of range. - if ( mouse.x >= this._MaximumX - 5 ) - mouse.x = this._MaximumX - 5 ; - if ( mouse.x <= this._MinimumX + 5 ) - mouse.x = this._MinimumX + 5 ; - - var docX = mouse.x + FCKTools.GetScrollPosition( window ).X ; - this._ResizeBar.style.left = ( docX - this._ResizeBar.offsetWidth / 2 ) + "px" ; - this._LastX = mouse.x ; - }, - "_ShowResizeBar" : function( w, table, mouse ) - { - if ( this._ResizeBar == null ) - { - this._ResizeBar = this._doc.createElement( "div" ) ; - var paddingBar = this._ResizeBar ; - var paddingStyles = { 'position' : 'absolute', 'cursor' : 'e-resize' } ; - if ( FCKBrowserInfo.IsIE ) - paddingStyles.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity=10,enabled=true)" ; - else - paddingStyles.opacity = 0.10 ; - FCKDomTools.SetElementStyles( paddingBar, paddingStyles ) ; - this._avoidStyles( paddingBar ); - paddingBar.setAttribute('_fcktemp', true); - this._doc.body.appendChild( paddingBar ) ; - FCKTools.AddEventListener( paddingBar, "mousemove", this._ResizeBarMouseMoveListener ) ; - FCKTools.AddEventListener( paddingBar, "mousedown", this._ResizeBarMouseDownListener ) ; - FCKTools.AddEventListener( document, "mouseup", this._ResizeBarMouseUpListener ) ; - FCKTools.AddEventListener( FCK.EditorDocument, "mouseup", this._ResizeBarMouseUpListener ) ; - - // IE doesn't let the tranparent part of the padding block to receive mouse events unless there's something inside. - // So we need to create a spacer image to fill the block up. - var filler = this._doc.createElement( "img" ) ; - filler.setAttribute('_fcktemp', true); - filler.border = 0 ; - filler.src = FCKConfig.BasePath + "images/spacer.gif" ; - filler.style.position = "absolute" ; - paddingBar.appendChild( filler ) ; - - // Disable drag and drop, and selection for the filler image. - var disabledListener = function( evt ) - { - if ( evt.preventDefault ) - evt.preventDefault() ; - else - evt.returnValue = false ; - } - FCKTools.AddEventListener( filler, "dragstart", disabledListener ) ; - FCKTools.AddEventListener( filler, "selectstart", disabledListener ) ; - } - - var paddingBar = this._ResizeBar ; - var offset = this._GetIframeOffset() ; - var tablePos = this._GetTablePosition( w, table ) ; - var barHeight = table.offsetHeight ; - var barTop = offset.y + tablePos.y ; - // Do not let the resize bar intrude into the toolbar area. - if ( tablePos.y < 0 ) - { - barHeight += tablePos.y ; - barTop -= tablePos.y ; - } - var bw = parseInt( table.border, 10 ) ; - if ( isNaN( bw ) ) - bw = 0 ; - var cs = parseInt( table.cellSpacing, 10 ) ; - if ( isNaN( cs ) ) - cs = 0 ; - var barWidth = Math.max( bw+100, cs+100 ) ; - var paddingStyles = - { - 'top' : barTop + 'px', - 'height' : barHeight + 'px', - 'width' : barWidth + 'px', - 'left' : ( offset.x + mouse.x + FCKTools.GetScrollPosition( w ).X - barWidth / 2 ) + 'px' - } ; - if ( FCKBrowserInfo.IsIE ) - paddingBar.filters.item("DXImageTransform.Microsoft.Alpha").opacity = 10 ; - else - paddingStyles.opacity = 0.1 ; - - FCKDomTools.SetElementStyles( paddingBar, paddingStyles ) ; - var filler = paddingBar.getElementsByTagName( "img" )[0] ; - - FCKDomTools.SetElementStyles( filler, - { - width : paddingBar.offsetWidth + 'px', - height : barHeight + 'px' - } ) ; - - barWidth = Math.max( bw, cs, 3 ) ; - var visibleBar = null ; - if ( paddingBar.getElementsByTagName( "div" ).length < 1 ) - { - visibleBar = this._doc.createElement( "div" ) ; - this._avoidStyles( visibleBar ); - visibleBar.setAttribute('_fcktemp', true); - paddingBar.appendChild( visibleBar ) ; - } - else - visibleBar = paddingBar.getElementsByTagName( "div" )[0] ; - - FCKDomTools.SetElementStyles( visibleBar, - { - position : 'absolute', - backgroundColor : 'blue', - width : barWidth + 'px', - height : barHeight + 'px', - left : '50px', - top : '0px' - } ) ; - }, - "_HideResizeBar" : function() - { - if ( this._ResizeBar ) - // IE bug: display : none does not hide the resize bar for some reason. - // so set the position to somewhere invisible. - FCKDomTools.SetElementStyles( this._ResizeBar, - { - top : '-100000px', - left : '-100000px' - } ) ; - }, - "_GetIframeOffset" : function () - { - return FCKTools.GetDocumentPosition( window, FCK.EditingArea.IFrame ) ; - }, - "_GetTablePosition" : function ( w, table ) - { - return FCKTools.GetWindowPosition( w, table ) ; - }, - "_avoidStyles" : function( element ) - { - FCKDomTools.SetElementStyles( element, - { - padding : '0', - backgroundImage : 'none', - border : '0' - } ) ; - }, - "Reset" : function() - { - FCKDragTableHandler._LeftCell = FCKDragTableHandler._RightCell = FCKDragTableHandler._TableMap = null ; - } - -}; - -FCK.Events.AttachEvent( "OnMouseMove", FCKDragTableHandler.MouseMoveListener ) ; -FCK.Events.AttachEvent( "OnAfterSetHTML", FCKDragTableHandler.Reset ) ; diff --git a/httemplate/elements/fckeditor/editor/plugins/placeholder/fck_placeholder.html b/httemplate/elements/fckeditor/editor/plugins/placeholder/fck_placeholder.html index df8c563d6..a334206a5 100644 --- a/httemplate/elements/fckeditor/editor/plugins/placeholder/fck_placeholder.html +++ b/httemplate/elements/fckeditor/editor/plugins/placeholder/fck_placeholder.html @@ -1,7 +1,7 @@ - - - - - - - -

- - diff --git a/httemplate/elements/fckeditor/editor/wsc/tmpFrameset.html b/httemplate/elements/fckeditor/editor/wsc/tmpFrameset.html deleted file mode 100644 index 478d22629..000000000 --- a/httemplate/elements/fckeditor/editor/wsc/tmpFrameset.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/httemplate/elements/fckeditor/editor/wsc/w.html b/httemplate/elements/fckeditor/editor/wsc/w.html deleted file mode 100644 index df327a6be..000000000 --- a/httemplate/elements/fckeditor/editor/wsc/w.html +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - - - - - - - - diff --git a/httemplate/elements/fckeditor/fckconfig.js b/httemplate/elements/fckeditor/fckconfig.js index c35b37a8b..215bc0a74 100644 --- a/httemplate/elements/fckeditor/fckconfig.js +++ b/httemplate/elements/fckeditor/fckconfig.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -21,13 +21,15 @@ * Editor configuration settings. * * Follow this link for more information: - * http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options + * http://wiki.fckeditor.net/Developer%27s_Guide/Configuration/Configurations_Settings */ +// Disable the custom Enter Key Handler. This option will be removed in version 2.5. +FCKConfig.DisableEnterKeyHandler = false ; + FCKConfig.CustomConfigurationsPath = '' ; FCKConfig.EditorAreaCSS = FCKConfig.BasePath + 'css/fck_editorarea.css' ; -FCKConfig.EditorAreaStyles = '' ; FCKConfig.ToolbarComboPreviewCSS = '' ; FCKConfig.DocType = '' ; @@ -36,22 +38,16 @@ FCKConfig.BaseHref = '' ; FCKConfig.FullPage = false ; -// The following option determines whether the "Show Blocks" feature is enabled or not at startup. -FCKConfig.StartupShowBlocks = false ; - FCKConfig.Debug = false ; FCKConfig.AllowQueryStringDebug = true ; FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ; -FCKConfig.SkinEditorCSS = '' ; // FCKConfig.SkinPath + "|" ; -FCKConfig.SkinDialogCSS = '' ; // FCKConfig.SkinPath + "|" ; - +//FCKConfig.SkinPath = FCKConfig.BasePath + 'editor/skins/silver/' ; FCKConfig.PreloadImages = [ FCKConfig.SkinPath + 'images/toolbar.start.gif', FCKConfig.SkinPath + 'images/toolbar.buttonarrow.gif' ] ; FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/' ; // FCKConfig.Plugins.Add( 'autogrow' ) ; -// FCKConfig.Plugins.Add( 'dragresizetable' ); FCKConfig.AutoGrowMax = 400 ; // FCKConfig.ProtectedSource.Add( /<%[\s\S]*?%>/g ) ; // ASP style server side code <%...%> @@ -76,13 +72,11 @@ FCKConfig.FormatSource = true ; FCKConfig.FormatOutput = true ; FCKConfig.FormatIndentator = ' ' ; -FCKConfig.EMailProtection = 'none' ; // none | encode | function -FCKConfig.EMailProtectionFunction = 'mt(NAME,DOMAIN,SUBJECT,BODY)' ; - +FCKConfig.ForceStrongEm = true ; +FCKConfig.GeckoUseSPAN = false ; FCKConfig.StartupFocus = false ; FCKConfig.ForcePasteAsPlainText = false ; FCKConfig.AutoDetectPasteFromWord = true ; // IE only. -FCKConfig.ShowDropDialog = true ; FCKConfig.ForceSimpleAmpersand = false ; FCKConfig.TabSpaces = 0 ; FCKConfig.ShowBorders = true ; @@ -90,29 +84,45 @@ FCKConfig.SourcePopup = false ; FCKConfig.ToolbarStartExpanded = true ; FCKConfig.ToolbarCanCollapse = true ; FCKConfig.IgnoreEmptyParagraphValue = true ; +FCKConfig.PreserveSessionOnFileBrowser = false ; FCKConfig.FloatingPanelsZIndex = 10000 ; -FCKConfig.HtmlEncodeOutput = false ; FCKConfig.TemplateReplaceAll = true ; FCKConfig.TemplateReplaceCheckbox = true ; FCKConfig.ToolbarLocation = 'In' ; +//FCKConfig.ToolbarSets["Default"] = [ +// ['Source','DocProps','-','Save','NewPage','Preview','-','Templates'], +// ['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'], +// ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], +// ['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'], +// '/', +// ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], +// ['OrderedList','UnorderedList','-','Outdent','Indent'], +// ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], +// ['Link','Unlink','Anchor'], +// ['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak'], +// '/', +// ['Style','FontFormat','FontName','FontSize'], +// ['TextColor','BGColor'], +// ['FitWindow','-','About'] +//] ; FCKConfig.ToolbarSets["Default"] = [ ['Source','DocProps','-','Save','Preview','-'], ['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], - // ['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'], + //['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'], '/', ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], - ['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote'], + ['OrderedList','UnorderedList','-','Outdent','Indent'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], ['Link','Unlink','Anchor'], ['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak'], '/', ['Style','FontFormat','FontName','FontSize'], ['TextColor','BGColor'], - ['FitWindow','ShowBlocks','-','About'] // No comma for the last row. + ['FitWindow','-','About'] ] ; FCKConfig.ToolbarSets["Basic"] = [ @@ -127,13 +137,9 @@ FCKConfig.Keystrokes = [ [ CTRL + 67 /*C*/, true ], [ CTRL + 70 /*F*/, true ], [ CTRL + 83 /*S*/, true ], - [ CTRL + 84 /*T*/, true ], [ CTRL + 88 /*X*/, true ], [ CTRL + 86 /*V*/, 'Paste' ], - [ CTRL + 45 /*INS*/, true ], [ SHIFT + 45 /*INS*/, 'Paste' ], - [ CTRL + 88 /*X*/, 'Cut' ], - [ SHIFT + 46 /*DEL*/, 'Cut' ], [ CTRL + 90 /*Z*/, 'Undo' ], [ CTRL + 89 /*Y*/, 'Redo' ], [ CTRL + SHIFT + 90 /*Z*/, 'Redo' ], @@ -143,24 +149,22 @@ FCKConfig.Keystrokes = [ [ CTRL + 85 /*U*/, 'Underline' ], [ CTRL + SHIFT + 83 /*S*/, 'Save' ], [ CTRL + ALT + 13 /*ENTER*/, 'FitWindow' ], - [ SHIFT + 32 /*SPACE*/, 'Nbsp' ] + [ CTRL + 9 /*TAB*/, 'Source' ] ] ; -FCKConfig.ContextMenu = ['Generic','Link','Anchor','Image','Flash','Select','Textarea','Checkbox','Radio','TextField','HiddenField','ImageButton','Button','BulletedList','NumberedList','Table','Form','DivContainer'] ; +FCKConfig.ContextMenu = ['Generic','Link','Anchor','Image','Flash','Select','Textarea','Checkbox','Radio','TextField','HiddenField','ImageButton','Button','BulletedList','NumberedList','Table','Form'] ; FCKConfig.BrowserContextMenuOnCtrl = false ; -FCKConfig.BrowserContextMenu = false ; -FCKConfig.EnableMoreFontColors = true ; FCKConfig.FontColors = '000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,808080,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF' ; -FCKConfig.FontFormats = 'p;h1;h2;h3;h4;h5;h6;pre;address;div' ; FCKConfig.FontNames = 'Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana' ; -FCKConfig.FontSizes = 'smaller;larger;xx-small;x-small;small;medium;large;x-large;xx-large' ; +FCKConfig.FontSizes = '1/xx-small;2/x-small;3/small;4/medium;5/large;6/x-large;7/xx-large' ; +FCKConfig.FontFormats = 'p;div;pre;address;h1;h2;h3;h4;h5;h6' ; FCKConfig.StylesXmlPath = FCKConfig.EditorPath + 'fckstyles.xml' ; FCKConfig.TemplatesXmlPath = FCKConfig.EditorPath + 'fcktemplates.xml' ; -FCKConfig.SpellChecker = 'WSC' ; // 'WSC' | 'SCAYT' | 'SpellerPages' | 'ieSpell' +FCKConfig.SpellChecker = 'ieSpell' ; // 'ieSpell' | 'SpellerPages' FCKConfig.IeSpellDownloadUrl = 'http://www.iespell.com/download.php' ; FCKConfig.SpellerPagesServerScript = 'server-scripts/spellchecker.php' ; // Available extension: .php .cfm .pl FCKConfig.FirefoxSpellChecker = false ; @@ -184,88 +188,11 @@ FCKConfig.ProtectedTags = '' ; FCKConfig.BodyId = '' ; FCKConfig.BodyClass = '' ; -FCKConfig.DefaultStyleLabel = '' ; -FCKConfig.DefaultFontFormatLabel = '' ; -FCKConfig.DefaultFontLabel = '' ; -FCKConfig.DefaultFontSizeLabel = '' ; - FCKConfig.DefaultLinkTarget = '' ; // The option switches between trying to keep the html structure or do the changes so the content looks like it was in Word FCKConfig.CleanWordKeepsStructure = false ; -// Only inline elements are valid. -FCKConfig.RemoveFormatTags = 'b,big,code,del,dfn,em,font,i,ins,kbd,q,samp,small,span,strike,strong,sub,sup,tt,u,var' ; - -// Attributes that will be removed -FCKConfig.RemoveAttributes = 'class,style,lang,width,height,align,hspace,valign' ; - -FCKConfig.CustomStyles = -{ - 'Red Title' : { Element : 'h3', Styles : { 'color' : 'Red' } } -}; - -// Do not add, rename or remove styles here. Only apply definition changes. -FCKConfig.CoreStyles = -{ - // Basic Inline Styles. - 'Bold' : { Element : 'strong', Overrides : 'b' }, - 'Italic' : { Element : 'em', Overrides : 'i' }, - 'Underline' : { Element : 'u' }, - 'StrikeThrough' : { Element : 'strike' }, - 'Subscript' : { Element : 'sub' }, - 'Superscript' : { Element : 'sup' }, - - // Basic Block Styles (Font Format Combo). - 'p' : { Element : 'p' }, - 'div' : { Element : 'div' }, - 'pre' : { Element : 'pre' }, - 'address' : { Element : 'address' }, - 'h1' : { Element : 'h1' }, - 'h2' : { Element : 'h2' }, - 'h3' : { Element : 'h3' }, - 'h4' : { Element : 'h4' }, - 'h5' : { Element : 'h5' }, - 'h6' : { Element : 'h6' }, - - // Other formatting features. - 'FontFace' : - { - Element : 'span', - Styles : { 'font-family' : '#("Font")' }, - Overrides : [ { Element : 'font', Attributes : { 'face' : null } } ] - }, - - 'Size' : - { - Element : 'span', - Styles : { 'font-size' : '#("Size","fontSize")' }, - Overrides : [ { Element : 'font', Attributes : { 'size' : null } } ] - }, - - 'Color' : - { - Element : 'span', - Styles : { 'color' : '#("Color","color")' }, - Overrides : [ { Element : 'font', Attributes : { 'color' : null } } ] - }, - - 'BackColor' : { Element : 'span', Styles : { 'background-color' : '#("Color","color")' } }, - - 'SelectionHighlight' : { Element : 'span', Styles : { 'background-color' : 'navy', 'color' : 'white' } } -}; - -// The distance of an indentation step. -FCKConfig.IndentLength = 40 ; -FCKConfig.IndentUnit = 'px' ; - -// Alternatively, FCKeditor allows the use of CSS classes for block indentation. -// This overrides the IndentLength/IndentUnit settings. -FCKConfig.IndentClasses = [] ; - -// [ Left, Center, Right, Justified ] -FCKConfig.JustifyClasses = [] ; - // The following value defines which File Browser connector and Quick Upload // "uploader" to use. It is valid for the default implementaion and it is here // just to make this configuration file cleaner. @@ -273,53 +200,46 @@ FCKConfig.JustifyClasses = [] ; // inline when creating the editor instance. In that cases you must set the // values of LinkBrowserURL, ImageBrowserURL and so on. // Custom implementations should just ignore it. -var _FileBrowserLanguage = 'php' ; // asp | aspx | cfm | lasso | perl | php | py -var _QuickUploadLanguage = 'php' ; // asp | aspx | cfm | lasso | perl | php | py +var _FileBrowserLanguage = 'asp' ; // asp | aspx | cfm | lasso | perl | php | py +var _QuickUploadLanguage = 'asp' ; // asp | aspx | cfm | lasso | php + -// Don't care about the following two lines. It just calculates the correct connector +// Don't care about the following line. It just calculates the correct connector // extension to use for the default File Browser (Perl uses "cgi"). var _FileBrowserExtension = _FileBrowserLanguage == 'perl' ? 'cgi' : _FileBrowserLanguage ; -var _QuickUploadExtension = _QuickUploadLanguage == 'perl' ? 'cgi' : _QuickUploadLanguage ; FCKConfig.LinkBrowser = true ; -FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Connector=' + encodeURIComponent( FCKConfig.BasePath + 'filemanager/connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ) ; +FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Connector=connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ; FCKConfig.LinkBrowserWindowWidth = FCKConfig.ScreenWidth * 0.7 ; // 70% FCKConfig.LinkBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ; // 70% FCKConfig.ImageBrowser = true ; -FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=' + encodeURIComponent( FCKConfig.BasePath + 'filemanager/connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ) ; +FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ; FCKConfig.ImageBrowserWindowWidth = FCKConfig.ScreenWidth * 0.7 ; // 70% ; FCKConfig.ImageBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ; // 70% ; FCKConfig.FlashBrowser = true ; -FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=' + encodeURIComponent( FCKConfig.BasePath + 'filemanager/connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ) ; +FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ; FCKConfig.FlashBrowserWindowWidth = FCKConfig.ScreenWidth * 0.7 ; //70% ; FCKConfig.FlashBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ; //70% ; FCKConfig.LinkUpload = true ; -FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/connectors/' + _QuickUploadLanguage + '/upload.' + _QuickUploadExtension ; -FCKConfig.LinkUploadAllowedExtensions = ".(7z|aiff|asf|avi|bmp|csv|doc|fla|flv|gif|gz|gzip|jpeg|jpg|mid|mov|mp3|mp4|mpc|mpeg|mpg|ods|odt|pdf|png|ppt|pxd|qt|ram|rar|rm|rmi|rmvb|rtf|sdc|sitd|swf|sxc|sxw|tar|tgz|tif|tiff|txt|vsd|wav|wma|wmv|xls|xml|zip)$" ; // empty for all -FCKConfig.LinkUploadDeniedExtensions = "" ; // empty for no one +FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/' + _QuickUploadLanguage + '/upload.' + _QuickUploadLanguage ; +FCKConfig.LinkUploadAllowedExtensions = "" ; // empty for all +FCKConfig.LinkUploadDeniedExtensions = ".(html|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|com|dll|vbs|js|reg|cgi|htaccess|asis|sh|shtml|shtm|phtm)$" ; // empty for no one FCKConfig.ImageUpload = true ; -FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/connectors/' + _QuickUploadLanguage + '/upload.' + _QuickUploadExtension + '?Type=Image' ; +FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/' + _QuickUploadLanguage + '/upload.' + _QuickUploadLanguage + '?Type=Image' ; FCKConfig.ImageUploadAllowedExtensions = ".(jpg|gif|jpeg|png|bmp)$" ; // empty for all FCKConfig.ImageUploadDeniedExtensions = "" ; // empty for no one FCKConfig.FlashUpload = true ; -FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/connectors/' + _QuickUploadLanguage + '/upload.' + _QuickUploadExtension + '?Type=Flash' ; -FCKConfig.FlashUploadAllowedExtensions = ".(swf|flv)$" ; // empty for all +FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/upload/' + _QuickUploadLanguage + '/upload.' + _QuickUploadLanguage + '?Type=Flash' ; +FCKConfig.FlashUploadAllowedExtensions = ".(swf|fla)$" ; // empty for all FCKConfig.FlashUploadDeniedExtensions = "" ; // empty for no one FCKConfig.SmileyPath = FCKConfig.BasePath + 'images/smiley/msn/' ; FCKConfig.SmileyImages = ['regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif','embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif','devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif','broken_heart.gif','kiss.gif','envelope.gif'] ; FCKConfig.SmileyColumns = 8 ; FCKConfig.SmileyWindowWidth = 320 ; -FCKConfig.SmileyWindowHeight = 210 ; - -FCKConfig.BackgroundBlockerColor = '#ffffff' ; -FCKConfig.BackgroundBlockerOpacity = 0.50 ; - -FCKConfig.MsWebBrowserControlCompat = false ; - -FCKConfig.PreventSubmitHandler = false ; +FCKConfig.SmileyWindowHeight = 240 ; diff --git a/httemplate/elements/fckeditor/fckeditor.js b/httemplate/elements/fckeditor/fckeditor.js index 8e0126bae..63ec41f80 100644 --- a/httemplate/elements/fckeditor/fckeditor.js +++ b/httemplate/elements/fckeditor/fckeditor.js @@ -1,6 +1,6 @@ /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net - * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * @@ -34,9 +34,11 @@ var FCKeditor = function( instanceName, width, height, toolbarSet, value ) this.Height = height || '200' ; this.ToolbarSet = toolbarSet || 'Default' ; this.Value = value || '' ; - this.BasePath = FCKeditor.BasePath ; + this.BasePath = '/fckeditor/' ; this.CheckBrowser = true ; this.DisplayErrors = true ; + this.EnableSafari = false ; // This is a temporary property, while Safari support is under development. + this.EnableOpera = false ; // This is a temporary property, while Opera support is under development. this.Config = new Object() ; @@ -44,23 +46,8 @@ var FCKeditor = function( instanceName, width, height, toolbarSet, value ) this.OnError = null ; // function( source, errorNumber, errorDescription ) } -/** - * This is the default BasePath used by all editor instances. - */ -FCKeditor.BasePath = '/fckeditor/' ; - -/** - * The minimum height used when replacing textareas. - */ -FCKeditor.MinHeight = 200 ; - -/** - * The minimum width used when replacing textareas. - */ -FCKeditor.MinWidth = 750 ; - -FCKeditor.prototype.Version = '2.6.6' ; -FCKeditor.prototype.VersionBuild = '25427' ; +FCKeditor.prototype.Version = '2.4.3' ; +FCKeditor.prototype.VersionBuild = '15657' ; FCKeditor.prototype.Create = function() { @@ -76,7 +63,7 @@ FCKeditor.prototype.CreateHtml = function() return '' ; } - var sHtml = '' ; + var sHtml = '
' ; if ( !this.CheckBrowser || this._IsCompatibleBrowser() ) { @@ -88,26 +75,16 @@ FCKeditor.prototype.CreateHtml = function() { var sWidth = this.Width.toString().indexOf('%') > 0 ? this.Width : this.Width + 'px' ; var sHeight = this.Height.toString().indexOf('%') > 0 ? this.Height : this.Height + 'px' ; - - sHtml += '