summaryrefslogtreecommitdiffstats
path: root/po/tr.po
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2004-02-25 15:43:33 +0000
committerPablo Saratxaga <pablo@mandriva.com>2004-02-25 15:43:33 +0000
commit9df49b2dfbf77338fee675bad08589bdcda7e794 (patch)
tree16da262eb3ceb9eecd0cf2180d3aa199955d4afb /po/tr.po
parente9671085192f81b2e0e19d4f8084c2fd24db6c28 (diff)
downloadmgaonline-9df49b2dfbf77338fee675bad08589bdcda7e794.tar
mgaonline-9df49b2dfbf77338fee675bad08589bdcda7e794.tar.gz
mgaonline-9df49b2dfbf77338fee675bad08589bdcda7e794.tar.bz2
mgaonline-9df49b2dfbf77338fee675bad08589bdcda7e794.tar.xz
mgaonline-9df49b2dfbf77338fee675bad08589bdcda7e794.zip
updated pot file
Diffstat (limited to 'po/tr.po')
-rw-r--r--po/tr.po5
1 files changed, 3 insertions, 2 deletions
diff --git a/po/tr.po b/po/tr.po
index e99717e1..7972aabf 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mdkonline-tr\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-02-24 01:17+0100\n"
+"POT-Creation-Date: 2004-02-25 16:47+0100\n"
"PO-Revision-Date: 2004-02-16 21:49+0200\n"
"Last-Translator: S. Alp ŞENYER <ssenyer@linux-sevenler.org>\n"
"Language-Team: Turkish <Kde-i18n-tr@kde.org>\n"
@@ -413,7 +413,8 @@ msgid " --security - use only security media.\n"
msgstr " --security - sadece güvenlik medyasını kullan.\n"
#: ../mdkupdate:50
-msgid " --update - update all information.\n"
+#, fuzzy
+msgid " --update - launch MandrakeUpdate.\n"
msgstr " --update - tüm bilgiyi güncelle.\n"
#: ../mdkupdate:51
lass="hl kwa">use diagnostics; use strict; #-###################################################################################### #- misc imports #-###################################################################################### use common; use fs::type; use fs; use log; sub check_circular_mounts { my ($part, $all_hds) = @_; my $fstab = [ fs::get::fstab($all_hds), $part ]; # no pb if $part is already in $all_hds my $base_mntpoint = $part->{mntpoint}; my $check; $check = sub { my ($part, @seen) = @_; push @seen, $part->{mntpoint} || return; @seen > 1 && $part->{mntpoint} eq $base_mntpoint and die N("Circular mounts %s\n", join(", ", @seen)); if (my $part = fs::get::up_mount_point($part->{mntpoint}, $fstab)) { #- '/' carrier is a special case, it will be mounted first $check->($part, @seen) if !fs::type::carry_root_loopback($part); } if (isLoopback($part)) { $check->($part->{loopback_device}, @seen); } }; $check->($part) if !($base_mntpoint eq '/' && isLoopback($part)); #- '/' is a special case, no loop check } sub carryRootCreateSymlink { my ($part) = @_; fs::type::carry_root_loopback($part) or return; my $mntpoint = fs::get::mntpoint_prefixed($part); unless (-e $mntpoint) { eval { mkdir_p(dirname($mntpoint)) }; #- do non-relative link for install, should be changed to relative link before rebooting symlink "/initrd/loopfs", $mntpoint; mkdir_p("/initrd/loopfs/lnx4win/boot"); symlink "/initrd/loopfs/lnx4win/boot", "$::prefix/boot"; } #- indicate kernel to keep initrd mkdir_p("$::prefix/initrd"); } sub format_part { my ($part) = @_; fs::mount::part($part->{loopback_device}); create($part); fs::format::part_raw($part, undef); } sub create { my ($part) = @_; my $f = $part->{device} = fs::get::mntpoint_prefixed($part->{loopback_device}) . $part->{loopback_file}; return if -e $f; eval { mkdir_p(dirname($f)) }; log::l("creating loopback file $f ($part->{size} sectors)"); my $block_size = 128; my $s = "\0" x (512 * $block_size); sysopen(my $F, $f, 2 | c::O_CREAT()) or die "failed to create loopback file"; for (my $i = 0; $i < $part->{size}; $i += $block_size) { syswrite $F, $s or die "failed to create loopback file"; } } sub getFree { my ($dir, $part) = @_; my $freespace = $dir ? 2 * (MDK::Common::System::df($dir))[1] : #- df in KiB $part->{size}; $freespace - sum map { $_->{size} } @{$part->{loopback} || []}; } #- returns the size of the loopback file if it already exists #- returns -1 is the loopback file can not be used sub verifFile { my ($dir, $file, $part) = @_; -e "$dir$file" and return -s "$dir$file";