Version Description
Download this release
Release Info
Developer | alexrabe |
Plugin | NextGEN Gallery – WordPress Gallery Plugin |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- admin/admin.php +1 -1
- admin/manage-galleries.php +2 -1
- admin/upgrade.php +26 -10
- changelog.txt +6 -1
- lang/nggallery-de_DE.mo +0 -0
- lang/nggallery-de_DE.po +188 -174
- lang/nggallery.po +187 -173
- lib/meta.php +12 -8
- nggallery.php +6 -5
- readme.txt +4 -5
admin/admin.php
CHANGED
@@ -197,7 +197,7 @@ class nggAdminPanel{
|
|
197 |
|
198 |
$link = '';
|
199 |
// menu title is localized...
|
200 |
-
$i18n = strtolower (
|
201 |
|
202 |
switch ($screen) {
|
203 |
case 'toplevel_page_' . NGGFOLDER :
|
197 |
|
198 |
$link = '';
|
199 |
// menu title is localized...
|
200 |
+
$i18n = strtolower ( __ngettext( 'Gallery', 'Galleries', 1, 'nggallery' ) );
|
201 |
|
202 |
switch ($screen) {
|
203 |
case 'toplevel_page_' . NGGFOLDER :
|
admin/manage-galleries.php
CHANGED
@@ -32,6 +32,7 @@ if($gallerylist) {
|
|
32 |
foreach($gallerylist as $gallery) {
|
33 |
$class = ( $class == 'class="alternate"' ) ? '' : 'class="alternate"';
|
34 |
$gid = $gallery->gid;
|
|
|
35 |
$author_user = get_userdata( (int) $gallery->author );
|
36 |
?>
|
37 |
<tr id="gallery-<?php echo $gid ?>" <?php echo $class; ?> >
|
@@ -39,7 +40,7 @@ if($gallerylist) {
|
|
39 |
<td>
|
40 |
<?php if(nggAdmin::can_manage_this_gallery($gallery->author)) { ?>
|
41 |
<a href="<?php echo wp_nonce_url( $ngg->manage_page->base_page . "&mode=edit&gid=" . $gid, 'ngg_editgallery')?>" class='edit' title="<?php _e('Edit') ?>" >
|
42 |
-
<?php echo $
|
43 |
</a>
|
44 |
<?php } else { ?>
|
45 |
<?php echo $gallery->title; ?>
|
32 |
foreach($gallerylist as $gallery) {
|
33 |
$class = ( $class == 'class="alternate"' ) ? '' : 'class="alternate"';
|
34 |
$gid = $gallery->gid;
|
35 |
+
$name = (empty($gallery->title) ) ? $gallery->name : $gallery->title;
|
36 |
$author_user = get_userdata( (int) $gallery->author );
|
37 |
?>
|
38 |
<tr id="gallery-<?php echo $gid ?>" <?php echo $class; ?> >
|
40 |
<td>
|
41 |
<?php if(nggAdmin::can_manage_this_gallery($gallery->author)) { ?>
|
42 |
<a href="<?php echo wp_nonce_url( $ngg->manage_page->base_page . "&mode=edit&gid=" . $gid, 'ngg_editgallery')?>" class='edit' title="<?php _e('Edit') ?>" >
|
43 |
+
<?php echo $name; ?>
|
44 |
</a>
|
45 |
<?php } else { ?>
|
46 |
<?php echo $gallery->title; ?>
|
admin/upgrade.php
CHANGED
@@ -10,18 +10,18 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
10 |
function ngg_upgrade() {
|
11 |
|
12 |
global $wpdb, $user_ID;
|
13 |
-
|
14 |
$nggpictures = $wpdb->prefix . 'ngg_pictures';
|
15 |
$nggallery = $wpdb->prefix . 'ngg_gallery';
|
16 |
-
|
17 |
// get the current user ID
|
18 |
get_currentuserinfo();
|
19 |
|
20 |
// Be sure that the tables exist
|
21 |
if($wpdb->get_var("show tables like '$nggpictures'") == $nggpictures) {
|
22 |
|
23 |
-
|
24 |
|
|
|
25 |
// v0.33 -> v.071
|
26 |
if (version_compare($installed_ver, '0.71', '<')) {
|
27 |
$wpdb->query("ALTER TABLE ".$nggpictures." CHANGE pid pid BIGINT(20) NOT NULL AUTO_INCREMENT ");
|
@@ -45,14 +45,13 @@ function ngg_upgrade() {
|
|
45 |
$wpdb->query("ALTER TABLE ".$nggallery." CHANGE author author BIGINT(20) NOT NULL DEFAULT '0'");
|
46 |
}
|
47 |
|
48 |
-
// v0.95 -> v0.
|
49 |
if (version_compare($installed_ver, '0.96', '<')) {
|
50 |
// Convert into WordPress Core taxonomy scheme
|
51 |
ngg_convert_tags();
|
52 |
// Drop tables, we don't need them anymore
|
53 |
$wpdb->query("DROP TABLE " . $wpdb->prefix . "ngg_tags");
|
54 |
$wpdb->query("DROP TABLE " . $wpdb->prefix . "ngg_pic2tags");
|
55 |
-
ngg_convert_filestructure();
|
56 |
|
57 |
// New capability for administrator role
|
58 |
$role = get_role('administrator');
|
@@ -65,13 +64,30 @@ function ngg_upgrade() {
|
|
65 |
|
66 |
}
|
67 |
|
|
|
68 |
if (version_compare($installed_ver, '0.97', '<')) {
|
69 |
$wpdb->query("ALTER TABLE ".$nggpictures." ADD imagedate DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER alttext");
|
70 |
-
ngg_import_date_time();
|
71 |
}
|
72 |
|
|
|
73 |
update_option( "ngg_db_version", NGG_DBVERSION );
|
74 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
}
|
77 |
|
@@ -152,8 +168,8 @@ function ngg_import_date_time() {
|
|
152 |
$imagelist = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid ORDER BY tt.pid ASC");
|
153 |
if ( is_array($imagelist) ) {
|
154 |
foreach ($imagelist as $image) {
|
155 |
-
$picture = new nggImage($image
|
156 |
-
$meta = new nggMeta($picture->imagePath);
|
157 |
$date = $meta->get_date_time();
|
158 |
$wpdb->query("UPDATE $wpdb->nggpictures SET imagedate = '$date' WHERE pid = '$picture->pid'");
|
159 |
}
|
@@ -195,7 +211,7 @@ function nggallery_start_upgrade($filepath) {
|
|
195 |
?>
|
196 |
<div class="wrap">
|
197 |
<h2><?php _e('Upgrade NextGEN Gallery', 'nggallery') ;?></h2>
|
198 |
-
<p><?php
|
199 |
<p><?php _e('Upgrade sucessfull', 'nggallery') ;?></p>
|
200 |
<h3><a href="<?php echo $filepath;?>"><?php _e('Continue', 'nggallery'); ?>...</a></h3>
|
201 |
</div>
|
10 |
function ngg_upgrade() {
|
11 |
|
12 |
global $wpdb, $user_ID;
|
13 |
+
|
14 |
$nggpictures = $wpdb->prefix . 'ngg_pictures';
|
15 |
$nggallery = $wpdb->prefix . 'ngg_gallery';
|
|
|
16 |
// get the current user ID
|
17 |
get_currentuserinfo();
|
18 |
|
19 |
// Be sure that the tables exist
|
20 |
if($wpdb->get_var("show tables like '$nggpictures'") == $nggpictures) {
|
21 |
|
22 |
+
echo __('Upgrade database structure...', 'nggallery');
|
23 |
|
24 |
+
$installed_ver = get_option( "ngg_db_version" );
|
25 |
// v0.33 -> v.071
|
26 |
if (version_compare($installed_ver, '0.71', '<')) {
|
27 |
$wpdb->query("ALTER TABLE ".$nggpictures." CHANGE pid pid BIGINT(20) NOT NULL AUTO_INCREMENT ");
|
45 |
$wpdb->query("ALTER TABLE ".$nggallery." CHANGE author author BIGINT(20) NOT NULL DEFAULT '0'");
|
46 |
}
|
47 |
|
48 |
+
// v0.95 -> v0.97
|
49 |
if (version_compare($installed_ver, '0.96', '<')) {
|
50 |
// Convert into WordPress Core taxonomy scheme
|
51 |
ngg_convert_tags();
|
52 |
// Drop tables, we don't need them anymore
|
53 |
$wpdb->query("DROP TABLE " . $wpdb->prefix . "ngg_tags");
|
54 |
$wpdb->query("DROP TABLE " . $wpdb->prefix . "ngg_pic2tags");
|
|
|
55 |
|
56 |
// New capability for administrator role
|
57 |
$role = get_role('administrator');
|
64 |
|
65 |
}
|
66 |
|
67 |
+
// v0.97 -> v1.00
|
68 |
if (version_compare($installed_ver, '0.97', '<')) {
|
69 |
$wpdb->query("ALTER TABLE ".$nggpictures." ADD imagedate DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER alttext");
|
|
|
70 |
}
|
71 |
|
72 |
+
// update now the database
|
73 |
update_option( "ngg_db_version", NGG_DBVERSION );
|
74 |
+
echo __('finished', 'nggallery') . "<br />\n";
|
75 |
+
|
76 |
+
// Change all thumbnail folders to "thumbs"
|
77 |
+
if (version_compare($installed_ver, '0.96', '<')) {
|
78 |
+
echo __('Update file structure...', 'nggallery');
|
79 |
+
ngg_convert_filestructure();
|
80 |
+
echo __('finished', 'nggallery') . "<br />\n";
|
81 |
+
}
|
82 |
+
|
83 |
+
// On some reason the import / date sometimes failed, due to the memory limit
|
84 |
+
if (version_compare($installed_ver, '0.97', '<')) {
|
85 |
+
echo __('Import date and time information...', 'nggallery');
|
86 |
+
ngg_import_date_time();
|
87 |
+
echo __('finished', 'nggallery') . "<br />\n";
|
88 |
+
}
|
89 |
+
|
90 |
+
return;
|
91 |
}
|
92 |
}
|
93 |
|
168 |
$imagelist = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid ORDER BY tt.pid ASC");
|
169 |
if ( is_array($imagelist) ) {
|
170 |
foreach ($imagelist as $image) {
|
171 |
+
$picture = new nggImage($image);
|
172 |
+
$meta = new nggMeta($picture->imagePath, true);
|
173 |
$date = $meta->get_date_time();
|
174 |
$wpdb->query("UPDATE $wpdb->nggpictures SET imagedate = '$date' WHERE pid = '$picture->pid'");
|
175 |
}
|
211 |
?>
|
212 |
<div class="wrap">
|
213 |
<h2><?php _e('Upgrade NextGEN Gallery', 'nggallery') ;?></h2>
|
214 |
+
<p><?php ngg_upgrade();?></p>
|
215 |
<p><?php _e('Upgrade sucessfull', 'nggallery') ;?></p>
|
216 |
<h3><a href="<?php echo $filepath;?>"><?php _e('Continue', 'nggallery'); ?>...</a></h3>
|
217 |
</div>
|
changelog.txt
CHANGED
@@ -1,7 +1,12 @@
|
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
4 |
-
V1.
|
|
|
|
|
|
|
|
|
|
|
5 |
- NEW : Adding some rewrite rules for the Blog title for a better SEO (Will be continued...)
|
6 |
- NEW : Added ImageMagick support (currently a bit experimental) (THX to Frederic de Ranter)
|
7 |
- NEW : Automatic unistall via register_uninstall_hook()
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
4 |
+
V1.0.1 - 11.12.2008
|
5 |
+
- Bugfix : Change upgrade routine, import_date_time could cause a memory problem
|
6 |
+
- Bugfix : Help pages will not show up in non-english enviroment
|
7 |
+
- Bugfix : Show gallery name if title is empty
|
8 |
+
|
9 |
+
V1.0.0 - 11.12.2008
|
10 |
- NEW : Adding some rewrite rules for the Blog title for a better SEO (Will be continued...)
|
11 |
- NEW : Added ImageMagick support (currently a bit experimental) (THX to Frederic de Ranter)
|
12 |
- NEW : Automatic unistall via register_uninstall_hook()
|
lang/nggallery-de_DE.mo
CHANGED
Binary file
|
lang/nggallery-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2008-12-
|
6 |
-
"PO-Revision-Date: 2008-12-
|
7 |
"Last-Translator: Alex Rabe <no@email.com>\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -803,11 +803,11 @@ msgstr "Tut mir leid, aber NextGEN Galerie benötigt zwingend die Rolle \"Admini
|
|
803 |
msgid "NextGEN Gallery : Tables could not created, please check your database settings"
|
804 |
msgstr "NextGEN Gallery : Tabellen konnten nicht erstellt werden, überprüfe deine Datenbank"
|
805 |
|
806 |
-
#: ../admin/install.php:
|
807 |
msgid "[Show as slideshow]"
|
808 |
msgstr "[Zeige als Diashow]"
|
809 |
|
810 |
-
#: ../admin/install.php:
|
811 |
msgid "[Show picture list]"
|
812 |
msgstr "[Zeige Bilder-Liste]"
|
813 |
|
@@ -1165,7 +1165,7 @@ msgid "Alignment"
|
|
1165 |
msgstr "Ausrichtung"
|
1166 |
|
1167 |
#: ../admin/media-upload.php:198
|
1168 |
-
#: ../admin/settings.php:
|
1169 |
msgid "None"
|
1170 |
msgstr "Keiner"
|
1171 |
|
@@ -1185,7 +1185,7 @@ msgid "Right"
|
|
1185 |
msgstr "Rechts"
|
1186 |
|
1187 |
#: ../admin/media-upload.php:208
|
1188 |
-
#: ../admin/settings.php:
|
1189 |
msgid "Size"
|
1190 |
msgstr "Größe"
|
1191 |
|
@@ -1433,485 +1433,485 @@ msgstr "Optionen änderen"
|
|
1433 |
msgid "Update capabilities"
|
1434 |
msgstr "Rechte aktualisieren"
|
1435 |
|
1436 |
-
#: ../admin/settings.php:
|
1437 |
msgid "Cache cleared"
|
1438 |
msgstr "Cache löschen"
|
1439 |
|
1440 |
-
#: ../admin/settings.php:
|
1441 |
-
#: ../admin/settings.php:
|
1442 |
msgid "General Options"
|
1443 |
msgstr "Allg. Optionen"
|
1444 |
|
1445 |
-
#: ../admin/settings.php:
|
1446 |
-
#: ../admin/settings.php:
|
1447 |
msgid "Thumbnails"
|
1448 |
msgstr "Thumbnails"
|
1449 |
|
1450 |
-
#: ../admin/settings.php:
|
1451 |
msgid "Images"
|
1452 |
msgstr "Bilder"
|
1453 |
|
1454 |
-
#: ../admin/settings.php:
|
1455 |
-
#: ../admin/settings.php:
|
1456 |
msgid "Effects"
|
1457 |
msgstr "Effekte"
|
1458 |
|
1459 |
-
#: ../admin/settings.php:
|
1460 |
-
#: ../admin/settings.php:
|
1461 |
#: ../admin/tinymce/window.php:118
|
1462 |
msgid "Watermark"
|
1463 |
msgstr "Wasserzeichen"
|
1464 |
|
1465 |
-
#: ../admin/settings.php:
|
1466 |
-
#: ../admin/settings.php:
|
1467 |
-
#: ../admin/settings.php:
|
1468 |
#: ../admin/tinymce/window.php:57
|
1469 |
msgid "Slideshow"
|
1470 |
msgstr "Slideshow"
|
1471 |
|
1472 |
-
#: ../admin/settings.php:
|
1473 |
#: ../admin/wpmu.php:48
|
1474 |
msgid "Gallery path"
|
1475 |
msgstr "Galerie-Pfad"
|
1476 |
|
1477 |
-
#: ../admin/settings.php:
|
1478 |
msgid "This is the default path for all galleries"
|
1479 |
msgstr "Dies ist der Standard-Pfad für alle Galerien"
|
1480 |
|
1481 |
-
#: ../admin/settings.php:
|
1482 |
msgid "Delete image files"
|
1483 |
msgstr "Lösche Bilddateien"
|
1484 |
|
1485 |
-
#: ../admin/settings.php:
|
1486 |
msgid "Delete files, when removing a gallery in the database"
|
1487 |
msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
|
1488 |
|
1489 |
-
#: ../admin/settings.php:
|
1490 |
msgid "Activate permalinks"
|
1491 |
msgstr "Aktiviere Permalinks"
|
1492 |
|
1493 |
-
#: ../admin/settings.php:
|
1494 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1495 |
msgstr "Wenn du diese Option aktivierst, muss du einmal die Permalink Struktur aktualisieren."
|
1496 |
|
1497 |
-
#: ../admin/settings.php:
|
1498 |
msgid "Select graphic library"
|
1499 |
msgstr "Wähle Grafik-Bibliothek"
|
1500 |
|
1501 |
-
#: ../admin/settings.php:
|
1502 |
msgid "GD Library"
|
1503 |
msgstr "GD Bibliothek"
|
1504 |
|
1505 |
-
#: ../admin/settings.php:
|
1506 |
msgid "ImageMagick (Experimental). Path to the library :"
|
1507 |
msgstr "ImageMagick (Experimental). Pfad zur Bibliothek :"
|
1508 |
|
1509 |
-
#: ../admin/settings.php:
|
1510 |
msgid "Activate PicLens/CoolIris support"
|
1511 |
msgstr "Aktiviere PicLens/CoolIris"
|
1512 |
|
1513 |
-
#: ../admin/settings.php:
|
1514 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
1515 |
msgstr "Dieser Effekt fügt ein neues Javascript zu deinem Theme hinzu. Beachte das wp_footer() in deinen Vorlagen aufgerufen wird."
|
1516 |
|
1517 |
-
#: ../admin/settings.php:
|
1518 |
msgid "Tags / Categories"
|
1519 |
msgstr "Stichwörter / Kategorien"
|
1520 |
|
1521 |
-
#: ../admin/settings.php:
|
1522 |
msgid "Activate related images"
|
1523 |
msgstr "Verwandte Bilder anzeigen"
|
1524 |
|
1525 |
-
#: ../admin/settings.php:
|
1526 |
msgid "This option will append related images to every post"
|
1527 |
msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
|
1528 |
|
1529 |
-
#: ../admin/settings.php:
|
1530 |
msgid "Match with"
|
1531 |
msgstr "Vergleiche mit"
|
1532 |
|
1533 |
-
#: ../admin/settings.php:
|
1534 |
msgid "Categories"
|
1535 |
msgstr "Kategorien"
|
1536 |
|
1537 |
-
#: ../admin/settings.php:
|
1538 |
msgid "Max. number of images"
|
1539 |
msgstr "Max. Anzahl der Bilder"
|
1540 |
|
1541 |
-
#: ../admin/settings.php:
|
1542 |
msgid "0 will show all images"
|
1543 |
msgstr "0 zeige alle verwandten Bilder"
|
1544 |
|
1545 |
-
#: ../admin/settings.php:
|
1546 |
msgid "Thumbnail settings"
|
1547 |
msgstr "Thumbnail Einstellungen"
|
1548 |
|
1549 |
-
#: ../admin/settings.php:
|
1550 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
1551 |
msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
|
1552 |
|
1553 |
-
#: ../admin/settings.php:
|
1554 |
msgid "Width x height (in pixel)"
|
1555 |
msgstr "Breite x Höhe (in Pixel)"
|
1556 |
|
1557 |
-
#: ../admin/settings.php:
|
1558 |
msgid "These values are maximum values "
|
1559 |
msgstr "Diese Angaben sind maximale Angaben."
|
1560 |
|
1561 |
-
#: ../admin/settings.php:
|
1562 |
msgid "Set fix dimension"
|
1563 |
msgstr "Setze fixe Größe"
|
1564 |
|
1565 |
-
#: ../admin/settings.php:
|
1566 |
msgid "Ignore the aspect ratio, no portrait thumbnails"
|
1567 |
msgstr "Ignoriere Bildseitenverhältnis"
|
1568 |
|
1569 |
-
#: ../admin/settings.php:
|
1570 |
msgid "Crop square thumbnail from image"
|
1571 |
msgstr "Mittige Thumbnails aus Bildern ausschneiden"
|
1572 |
|
1573 |
-
#: ../admin/settings.php:
|
1574 |
msgid "Create square thumbnails, use only the width setting :"
|
1575 |
msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
|
1576 |
|
1577 |
-
#: ../admin/settings.php:
|
1578 |
msgid "Thumbnail quality"
|
1579 |
msgstr "Thumbnail Qualität"
|
1580 |
|
1581 |
-
#: ../admin/settings.php:
|
1582 |
msgid "Image settings"
|
1583 |
msgstr "Bild Einstellungen"
|
1584 |
|
1585 |
-
#: ../admin/settings.php:
|
1586 |
msgid "Resize Images"
|
1587 |
msgstr "Bilder verkleinern"
|
1588 |
|
1589 |
-
#: ../admin/settings.php:
|
1590 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1591 |
msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
|
1592 |
|
1593 |
-
#: ../admin/settings.php:
|
1594 |
msgid "Image quality"
|
1595 |
msgstr "Bild Qualität"
|
1596 |
|
1597 |
-
#: ../admin/settings.php:
|
1598 |
msgid "Single picture"
|
1599 |
msgstr "Einzelbilder"
|
1600 |
|
1601 |
-
#: ../admin/settings.php:
|
1602 |
msgid "Cache single pictures"
|
1603 |
msgstr "Nutze Cache für Einzelbidler"
|
1604 |
|
1605 |
-
#: ../admin/settings.php:
|
1606 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
1607 |
msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
|
1608 |
|
1609 |
-
#: ../admin/settings.php:
|
1610 |
msgid "Clear cache folder"
|
1611 |
msgstr "Lösche Cache Verzeichnis"
|
1612 |
|
1613 |
-
#: ../admin/settings.php:
|
1614 |
msgid "Proceed now"
|
1615 |
msgstr "Jetzt durchführen"
|
1616 |
|
1617 |
-
#: ../admin/settings.php:
|
1618 |
msgid "Deactivate gallery page link"
|
1619 |
msgstr "Keine Seitenverzweigung"
|
1620 |
|
1621 |
-
#: ../admin/settings.php:
|
1622 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
1623 |
msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
|
1624 |
|
1625 |
-
#: ../admin/settings.php:
|
1626 |
msgid "Number of images per page"
|
1627 |
msgstr "Anzahl der Bilder pro Seite"
|
1628 |
|
1629 |
-
#: ../admin/settings.php:
|
1630 |
msgid "0 will disable pagination, all images on one page"
|
1631 |
msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
|
1632 |
|
1633 |
-
#: ../admin/settings.php:
|
1634 |
msgid "Integrate slideshow"
|
1635 |
msgstr "Slideshow verwenden"
|
1636 |
|
1637 |
-
#: ../admin/settings.php:
|
1638 |
msgid "Show first"
|
1639 |
msgstr "Zeige als Erstes"
|
1640 |
|
1641 |
-
#: ../admin/settings.php:
|
1642 |
msgid "Show ImageBrowser"
|
1643 |
msgstr "Zeige Bilder Browser"
|
1644 |
|
1645 |
-
#: ../admin/settings.php:
|
1646 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
1647 |
msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
|
1648 |
|
1649 |
-
#: ../admin/settings.php:
|
1650 |
msgid "Sort options"
|
1651 |
msgstr "Sortierung"
|
1652 |
|
1653 |
-
#: ../admin/settings.php:
|
1654 |
msgid "Sort thumbnails"
|
1655 |
msgstr "Thumbnails sortieren"
|
1656 |
|
1657 |
-
#: ../admin/settings.php:
|
1658 |
msgid "Custom order"
|
1659 |
msgstr "Benutzerdefiniert"
|
1660 |
|
1661 |
-
#: ../admin/settings.php:
|
1662 |
msgid "Alt / Title text"
|
1663 |
msgstr "Alt / Titel Text"
|
1664 |
|
1665 |
-
#: ../admin/settings.php:
|
1666 |
msgid "Date / Time"
|
1667 |
msgstr "Datum/Zeit"
|
1668 |
|
1669 |
-
#: ../admin/settings.php:
|
1670 |
msgid "Sort direction"
|
1671 |
msgstr "Sortierreihenfolge"
|
1672 |
|
1673 |
-
#: ../admin/settings.php:
|
1674 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
|
1675 |
msgstr "Hier kannst Du den Effekt für die Thumbnails auswählen. NextGEN Galerie wird den benötigten HTML Code verwenden. Bitte beachte, das nur der Thickbox Effekt automatisch in Dein Theme von Wordpress integriert wird. Alle anderen Effekte mußt Du selbst in die header.php eintragen (JS)."
|
1676 |
|
1677 |
-
#: ../admin/settings.php:
|
1678 |
msgid "With the placeholder"
|
1679 |
msgstr "Mit Platzhalter"
|
1680 |
|
1681 |
-
#: ../admin/settings.php:
|
1682 |
msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
|
1683 |
msgstr "Du kannst eine Navigation durch die Bilder aktivieren (hängt vom Effekt ab). Ändere nur die Codezeile falls Du einen anderen Effekt für die Thumbnails verwendest oder einfach weißt, was Du tust."
|
1684 |
|
1685 |
-
#: ../admin/settings.php:
|
1686 |
msgid "JavaScript Thumbnail effect"
|
1687 |
msgstr "JavaScript Thumbnail Effekt"
|
1688 |
|
1689 |
-
#: ../admin/settings.php:
|
1690 |
msgid "Thickbox"
|
1691 |
msgstr "Thickbox"
|
1692 |
|
1693 |
-
#: ../admin/settings.php:
|
1694 |
msgid "Lightbox"
|
1695 |
msgstr "Lightbox"
|
1696 |
|
1697 |
-
#: ../admin/settings.php:
|
1698 |
msgid "Highslide"
|
1699 |
msgstr "Highslide"
|
1700 |
|
1701 |
-
#: ../admin/settings.php:
|
1702 |
msgid "Shutter"
|
1703 |
msgstr "Shutter"
|
1704 |
|
1705 |
-
#: ../admin/settings.php:
|
1706 |
msgid "Custom"
|
1707 |
msgstr "Eigener"
|
1708 |
|
1709 |
-
#: ../admin/settings.php:
|
1710 |
msgid "Link Code line"
|
1711 |
msgstr "Link Code Zeile"
|
1712 |
|
1713 |
-
#: ../admin/settings.php:
|
1714 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
1715 |
msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
|
1716 |
|
1717 |
-
#: ../admin/settings.php:
|
1718 |
msgid "Preview"
|
1719 |
msgstr "Vorschau"
|
1720 |
|
1721 |
-
#: ../admin/settings.php:350
|
1722 |
#: ../admin/settings.php:355
|
|
|
1723 |
msgid "Position"
|
1724 |
msgstr "Position"
|
1725 |
|
1726 |
-
#: ../admin/settings.php:
|
1727 |
msgid "Offset"
|
1728 |
msgstr "Abstand"
|
1729 |
|
1730 |
-
#: ../admin/settings.php:
|
1731 |
msgid "Use image as watermark"
|
1732 |
msgstr "Benutze Bild als Wasserzeichen"
|
1733 |
|
1734 |
-
#: ../admin/settings.php:
|
1735 |
msgid "URL to file"
|
1736 |
msgstr "URL zur Datei"
|
1737 |
|
1738 |
-
#: ../admin/settings.php:
|
1739 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
1740 |
msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
|
1741 |
|
1742 |
-
#: ../admin/settings.php:
|
1743 |
msgid "Use text as watermark"
|
1744 |
msgstr "Benutze Text als Wasserzeichen"
|
1745 |
|
1746 |
-
#: ../admin/settings.php:
|
1747 |
msgid "Font"
|
1748 |
msgstr "Schriftart"
|
1749 |
|
1750 |
-
#: ../admin/settings.php:
|
1751 |
msgid "This function will not work, cause you need the FreeType library"
|
1752 |
msgstr "Diese Funktion benötigt die FreeType Bibliothek"
|
1753 |
|
1754 |
-
#: ../admin/settings.php:
|
1755 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
1756 |
msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
|
1757 |
|
1758 |
-
#: ../admin/settings.php:
|
1759 |
msgid "Color"
|
1760 |
msgstr "Farbe"
|
1761 |
|
1762 |
-
#: ../admin/settings.php:
|
1763 |
msgid "(hex w/o #)"
|
1764 |
msgstr "(hex w/o #)"
|
1765 |
|
1766 |
-
#: ../admin/settings.php:
|
1767 |
msgid "Text"
|
1768 |
msgstr "Text"
|
1769 |
|
1770 |
-
#: ../admin/settings.php:
|
1771 |
msgid "Opaque"
|
1772 |
msgstr "Transparenz"
|
1773 |
|
1774 |
-
#: ../admin/settings.php:
|
1775 |
msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
|
1776 |
msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
|
1777 |
|
1778 |
-
#: ../admin/settings.php:
|
1779 |
msgid "The settings are used in the JW Image Rotator Version"
|
1780 |
msgstr "Die Einstellungen werden im JW Image Rotator benutzt , in der Version"
|
1781 |
|
1782 |
-
#: ../admin/settings.php:
|
1783 |
msgid "See more information for the Flash Player on the web page"
|
1784 |
msgstr "Weitere Informationen auf der Flash Player Homepage"
|
1785 |
|
1786 |
-
#: ../admin/settings.php:
|
1787 |
msgid "Default size (W x H)"
|
1788 |
msgstr "Standard Größe (B x H)"
|
1789 |
|
1790 |
-
#: ../admin/settings.php:
|
1791 |
msgid "Shuffle mode"
|
1792 |
msgstr "Shuffle Modus"
|
1793 |
|
1794 |
-
#: ../admin/settings.php:
|
1795 |
msgid "Show next image on click"
|
1796 |
msgstr "Zeige nächstes Bild bei Klick"
|
1797 |
|
1798 |
-
#: ../admin/settings.php:
|
1799 |
msgid "Show navigation bar"
|
1800 |
msgstr "Zeige Navigations-Leiste"
|
1801 |
|
1802 |
-
#: ../admin/settings.php:
|
1803 |
msgid "Show loading icon"
|
1804 |
msgstr "Zeige Lade-Bildchen"
|
1805 |
|
1806 |
-
#: ../admin/settings.php:
|
1807 |
msgid "Use watermark logo"
|
1808 |
msgstr "Wasserzeichen anzeigen"
|
1809 |
|
1810 |
-
#: ../admin/settings.php:
|
1811 |
msgid "You can change the logo at the watermark settings"
|
1812 |
msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
|
1813 |
|
1814 |
-
#: ../admin/settings.php:
|
1815 |
msgid "Stretch image"
|
1816 |
msgstr "Bild dehnen"
|
1817 |
|
1818 |
-
#: ../admin/settings.php:
|
1819 |
msgid "true"
|
1820 |
msgstr "Ja"
|
1821 |
|
1822 |
-
#: ../admin/settings.php:
|
1823 |
msgid "false"
|
1824 |
msgstr "Nein"
|
1825 |
|
1826 |
-
#: ../admin/settings.php:
|
1827 |
msgid "fit"
|
1828 |
msgstr "Passend"
|
1829 |
|
1830 |
-
#: ../admin/settings.php:
|
1831 |
msgid "none"
|
1832 |
msgstr "keiner"
|
1833 |
|
1834 |
-
#: ../admin/settings.php:
|
1835 |
msgid "Duration time"
|
1836 |
msgstr "Dauer"
|
1837 |
|
1838 |
-
#: ../admin/settings.php:
|
1839 |
msgid "sec."
|
1840 |
msgstr "Sek."
|
1841 |
|
1842 |
-
#: ../admin/settings.php:
|
1843 |
msgid "Transition / Fade effect"
|
1844 |
msgstr "Fade Effekt"
|
1845 |
|
1846 |
-
#: ../admin/settings.php:
|
1847 |
msgid "fade"
|
1848 |
msgstr "Fade"
|
1849 |
|
1850 |
-
#: ../admin/settings.php:
|
1851 |
msgid "bgfade"
|
1852 |
msgstr "BGFade"
|
1853 |
|
1854 |
-
#: ../admin/settings.php:
|
1855 |
msgid "slowfade"
|
1856 |
msgstr "Slowfade"
|
1857 |
|
1858 |
-
#: ../admin/settings.php:
|
1859 |
msgid "circles"
|
1860 |
msgstr "Kreise"
|
1861 |
|
1862 |
-
#: ../admin/settings.php:
|
1863 |
msgid "bubbles"
|
1864 |
msgstr "Blasen"
|
1865 |
|
1866 |
-
#: ../admin/settings.php:
|
1867 |
msgid "blocks"
|
1868 |
msgstr "Blöcke"
|
1869 |
|
1870 |
-
#: ../admin/settings.php:
|
1871 |
msgid "fluids"
|
1872 |
msgstr "Fluids"
|
1873 |
|
1874 |
-
#: ../admin/settings.php:
|
1875 |
msgid "flash"
|
1876 |
msgstr "Flash"
|
1877 |
|
1878 |
-
#: ../admin/settings.php:
|
1879 |
msgid "lines"
|
1880 |
msgstr "Linien"
|
1881 |
|
1882 |
-
#: ../admin/settings.php:
|
1883 |
msgid "random"
|
1884 |
msgstr "Zufall"
|
1885 |
|
1886 |
-
#: ../admin/settings.php:
|
1887 |
msgid "Use slow zooming effect"
|
1888 |
msgstr "nutze Zoom Effekt"
|
1889 |
|
1890 |
-
#: ../admin/settings.php:
|
1891 |
msgid "Background Color"
|
1892 |
msgstr "Hintergrund (BG) Farbe"
|
1893 |
|
1894 |
-
#: ../admin/settings.php:
|
1895 |
msgid "Texts / Buttons Color"
|
1896 |
msgstr "Text- / Button Farbe"
|
1897 |
|
1898 |
-
#: ../admin/settings.php:
|
1899 |
msgid "Rollover / Active Color"
|
1900 |
msgstr "Rollover / Aktiv (Link) Farbe"
|
1901 |
|
1902 |
-
#: ../admin/settings.php:
|
1903 |
msgid "Screen Color"
|
1904 |
msgstr "Seiten Farbe"
|
1905 |
|
1906 |
-
#: ../admin/settings.php:
|
1907 |
msgid "Background music (URL)"
|
1908 |
msgstr "Hintergrundmusik (URL)"
|
1909 |
|
1910 |
-
#: ../admin/settings.php:
|
1911 |
msgid "Try XHTML validation (with CDATA)"
|
1912 |
msgstr "Integriere XHTML Validierung (mittels CDATA)"
|
1913 |
|
1914 |
-
#: ../admin/settings.php:
|
1915 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
1916 |
msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
|
1917 |
|
@@ -2180,48 +2180,62 @@ msgstr "Stichwörter vergleichen :"
|
|
2180 |
msgid "Slug(s) to set:"
|
2181 |
msgstr "Schlagwörter setzen:"
|
2182 |
|
|
|
|
|
|
|
|
|
2183 |
#: ../admin/upgrade.php:74
|
2184 |
-
|
2185 |
-
|
|
|
|
|
2186 |
|
2187 |
-
#: ../admin/upgrade.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2188 |
msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
|
2189 |
msgstr "Einige Verzeichnisse / Bilder konnten nicht umbenannt werden, bitte überprüfe die Zugriffsrechte und Scanne dann das Verzeichnis neu ein."
|
2190 |
|
2191 |
-
#: ../admin/upgrade.php:
|
2192 |
msgid "Rename failed"
|
2193 |
msgstr "Konnte nicht umbenannt werden"
|
2194 |
|
2195 |
-
#: ../admin/upgrade.php:
|
2196 |
-
#: ../admin/upgrade.php:
|
2197 |
msgid "Upgrade NextGEN Gallery"
|
2198 |
msgstr "NextGEN Gallery aktualisieren"
|
2199 |
|
2200 |
-
#: ../admin/upgrade.php:
|
2201 |
msgid "The script detect that you upgrade from a older version."
|
2202 |
msgstr "Es wurde eine ältere NextGEN Datenbank erkannt."
|
2203 |
|
2204 |
-
#: ../admin/upgrade.php:
|
2205 |
msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
|
2206 |
msgstr "Deinen Datenbank für NextGEN Gallery ist nicht auf dem aktuellen Stand, Sie muss jetzt aktualisiert werden."
|
2207 |
|
2208 |
-
#: ../admin/upgrade.php:
|
2209 |
msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
|
2210 |
msgstr "Wenn du wieder auf eine älter Version zurückgehen möchtest, musst du vorher die Datenbank sichern."
|
2211 |
|
2212 |
-
#: ../admin/upgrade.php:
|
2213 |
msgid "The upgrade process may take a while, so please be patient."
|
2214 |
msgstr "Der Upgrade Prozess kann etwas dauern, bitte sei geduldig..."
|
2215 |
|
2216 |
-
#: ../admin/upgrade.php:
|
2217 |
msgid "Start upgrade now"
|
2218 |
msgstr "Aktualisierung starten"
|
2219 |
|
2220 |
-
#: ../admin/upgrade.php:
|
2221 |
msgid "Upgrade sucessfull"
|
2222 |
msgstr "Aktualisierung erfolgreich"
|
2223 |
|
2224 |
-
#: ../admin/upgrade.php:
|
2225 |
msgid "Continue"
|
2226 |
msgstr "Weiter"
|
2227 |
|
@@ -2346,126 +2360,126 @@ msgstr "Kein Float"
|
|
2346 |
msgid "Insert"
|
2347 |
msgstr "Einfügen"
|
2348 |
|
2349 |
-
#: ../lib/meta.php:
|
2350 |
msgid " mm"
|
2351 |
msgstr " mm"
|
2352 |
|
2353 |
-
#: ../lib/meta.php:
|
2354 |
msgid " sec"
|
2355 |
msgstr " Sek."
|
2356 |
|
2357 |
-
#: ../lib/meta.php:
|
2358 |
#: ../view/imagebrowser-exif.php:42
|
2359 |
msgid "Aperture"
|
2360 |
msgstr "Blende"
|
2361 |
|
2362 |
-
#: ../lib/meta.php:
|
2363 |
-
#: ../lib/meta.php:
|
2364 |
msgid "Credit"
|
2365 |
msgstr "Autor"
|
2366 |
|
2367 |
-
#: ../lib/meta.php:
|
2368 |
msgid "Camera"
|
2369 |
msgstr "Kamera"
|
2370 |
|
2371 |
-
#: ../lib/meta.php:
|
2372 |
msgid "Caption"
|
2373 |
msgstr "Beschreibung"
|
2374 |
|
2375 |
-
#: ../lib/meta.php:
|
2376 |
msgid "Copyright"
|
2377 |
msgstr "Rechte"
|
2378 |
|
2379 |
-
#: ../lib/meta.php:
|
2380 |
msgid "Focal length"
|
2381 |
msgstr "Brennweite"
|
2382 |
|
2383 |
-
#: ../lib/meta.php:
|
2384 |
msgid "ISO"
|
2385 |
msgstr "ISO"
|
2386 |
|
2387 |
-
#: ../lib/meta.php:
|
2388 |
#: ../view/imagebrowser-exif.php:50
|
2389 |
msgid "Shutter speed"
|
2390 |
msgstr "Belichtungszeit"
|
2391 |
|
2392 |
-
#: ../lib/meta.php:
|
2393 |
msgid "Subject"
|
2394 |
msgstr "Betreff"
|
2395 |
|
2396 |
-
#: ../lib/meta.php:
|
2397 |
msgid "Make"
|
2398 |
msgstr "Hersteller"
|
2399 |
|
2400 |
-
#: ../lib/meta.php:
|
2401 |
msgid "Edit Status"
|
2402 |
msgstr "Ändere Status"
|
2403 |
|
2404 |
-
#: ../lib/meta.php:
|
2405 |
msgid "Category"
|
2406 |
msgstr "Kategorie"
|
2407 |
|
2408 |
-
#: ../lib/meta.php:
|
2409 |
msgid "Keywords"
|
2410 |
msgstr "Schlüsselwörter"
|
2411 |
|
2412 |
-
#: ../lib/meta.php:
|
2413 |
msgid "Date Created"
|
2414 |
msgstr "erstellt (Datum)"
|
2415 |
|
2416 |
-
#: ../lib/meta.php:
|
2417 |
msgid "Time Created"
|
2418 |
msgstr "erstellt (Zeit)"
|
2419 |
|
2420 |
-
#: ../lib/meta.php:
|
2421 |
msgid "Author Position"
|
2422 |
msgstr "Autor Position"
|
2423 |
|
2424 |
-
#: ../lib/meta.php:
|
2425 |
msgid "City"
|
2426 |
msgstr "Stadt"
|
2427 |
|
2428 |
-
#: ../lib/meta.php:
|
2429 |
msgid "Location"
|
2430 |
msgstr "Ort"
|
2431 |
|
2432 |
-
#: ../lib/meta.php:
|
2433 |
msgid "Province/State"
|
2434 |
msgstr "Staat / PLZ"
|
2435 |
|
2436 |
-
#: ../lib/meta.php:
|
2437 |
msgid "Country code"
|
2438 |
msgstr "Landescode"
|
2439 |
|
2440 |
-
#: ../lib/meta.php:
|
2441 |
msgid "Country"
|
2442 |
msgstr "Land"
|
2443 |
|
2444 |
-
#: ../lib/meta.php:
|
2445 |
msgid "Headline"
|
2446 |
msgstr "Kopfzeile"
|
2447 |
|
2448 |
-
#: ../lib/meta.php:
|
2449 |
msgid "Source"
|
2450 |
msgstr "Quelle"
|
2451 |
|
2452 |
-
#: ../lib/meta.php:
|
2453 |
msgid "Copyright Notice"
|
2454 |
msgstr "Copyright Hinweise / Credits"
|
2455 |
|
2456 |
-
#: ../lib/meta.php:
|
2457 |
msgid "Contact"
|
2458 |
msgstr "Kontakt"
|
2459 |
|
2460 |
-
#: ../lib/meta.php:
|
2461 |
msgid "Last modified"
|
2462 |
msgstr "Zuletzt geändert"
|
2463 |
|
2464 |
-
#: ../lib/meta.php:
|
2465 |
msgid "Program tool"
|
2466 |
msgstr "Programm"
|
2467 |
|
2468 |
-
#: ../lib/meta.php:
|
2469 |
msgid "Format"
|
2470 |
msgstr "Format"
|
2471 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-12-11 20:28+0100\n"
|
6 |
+
"PO-Revision-Date: 2008-12-11 20:29+0100\n"
|
7 |
"Last-Translator: Alex Rabe <no@email.com>\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
803 |
msgid "NextGEN Gallery : Tables could not created, please check your database settings"
|
804 |
msgstr "NextGEN Gallery : Tabellen konnten nicht erstellt werden, überprüfe deine Datenbank"
|
805 |
|
806 |
+
#: ../admin/install.php:156
|
807 |
msgid "[Show as slideshow]"
|
808 |
msgstr "[Zeige als Diashow]"
|
809 |
|
810 |
+
#: ../admin/install.php:157
|
811 |
msgid "[Show picture list]"
|
812 |
msgstr "[Zeige Bilder-Liste]"
|
813 |
|
1165 |
msgstr "Ausrichtung"
|
1166 |
|
1167 |
#: ../admin/media-upload.php:198
|
1168 |
+
#: ../admin/settings.php:320
|
1169 |
msgid "None"
|
1170 |
msgstr "Keiner"
|
1171 |
|
1185 |
msgstr "Rechts"
|
1186 |
|
1187 |
#: ../admin/media-upload.php:208
|
1188 |
+
#: ../admin/settings.php:423
|
1189 |
msgid "Size"
|
1190 |
msgstr "Größe"
|
1191 |
|
1433 |
msgid "Update capabilities"
|
1434 |
msgstr "Rechte aktualisieren"
|
1435 |
|
1436 |
+
#: ../admin/settings.php:53
|
1437 |
msgid "Cache cleared"
|
1438 |
msgstr "Cache löschen"
|
1439 |
|
1440 |
+
#: ../admin/settings.php:101
|
1441 |
+
#: ../admin/settings.php:113
|
1442 |
msgid "General Options"
|
1443 |
msgstr "Allg. Optionen"
|
1444 |
|
1445 |
+
#: ../admin/settings.php:102
|
1446 |
+
#: ../admin/settings.php:272
|
1447 |
msgid "Thumbnails"
|
1448 |
msgstr "Thumbnails"
|
1449 |
|
1450 |
+
#: ../admin/settings.php:103
|
1451 |
msgid "Images"
|
1452 |
msgstr "Bilder"
|
1453 |
|
1454 |
+
#: ../admin/settings.php:105
|
1455 |
+
#: ../admin/settings.php:309
|
1456 |
msgid "Effects"
|
1457 |
msgstr "Effekte"
|
1458 |
|
1459 |
+
#: ../admin/settings.php:106
|
1460 |
+
#: ../admin/settings.php:347
|
1461 |
#: ../admin/tinymce/window.php:118
|
1462 |
msgid "Watermark"
|
1463 |
msgstr "Wasserzeichen"
|
1464 |
|
1465 |
+
#: ../admin/settings.php:107
|
1466 |
+
#: ../admin/settings.php:273
|
1467 |
+
#: ../admin/settings.php:451
|
1468 |
#: ../admin/tinymce/window.php:57
|
1469 |
msgid "Slideshow"
|
1470 |
msgstr "Slideshow"
|
1471 |
|
1472 |
+
#: ../admin/settings.php:119
|
1473 |
#: ../admin/wpmu.php:48
|
1474 |
msgid "Gallery path"
|
1475 |
msgstr "Galerie-Pfad"
|
1476 |
|
1477 |
+
#: ../admin/settings.php:121
|
1478 |
msgid "This is the default path for all galleries"
|
1479 |
msgstr "Dies ist der Standard-Pfad für alle Galerien"
|
1480 |
|
1481 |
+
#: ../admin/settings.php:124
|
1482 |
msgid "Delete image files"
|
1483 |
msgstr "Lösche Bilddateien"
|
1484 |
|
1485 |
+
#: ../admin/settings.php:126
|
1486 |
msgid "Delete files, when removing a gallery in the database"
|
1487 |
msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
|
1488 |
|
1489 |
+
#: ../admin/settings.php:129
|
1490 |
msgid "Activate permalinks"
|
1491 |
msgstr "Aktiviere Permalinks"
|
1492 |
|
1493 |
+
#: ../admin/settings.php:131
|
1494 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1495 |
msgstr "Wenn du diese Option aktivierst, muss du einmal die Permalink Struktur aktualisieren."
|
1496 |
|
1497 |
+
#: ../admin/settings.php:134
|
1498 |
msgid "Select graphic library"
|
1499 |
msgstr "Wähle Grafik-Bibliothek"
|
1500 |
|
1501 |
+
#: ../admin/settings.php:135
|
1502 |
msgid "GD Library"
|
1503 |
msgstr "GD Bibliothek"
|
1504 |
|
1505 |
+
#: ../admin/settings.php:136
|
1506 |
msgid "ImageMagick (Experimental). Path to the library :"
|
1507 |
msgstr "ImageMagick (Experimental). Pfad zur Bibliothek :"
|
1508 |
|
1509 |
+
#: ../admin/settings.php:141
|
1510 |
msgid "Activate PicLens/CoolIris support"
|
1511 |
msgstr "Aktiviere PicLens/CoolIris"
|
1512 |
|
1513 |
+
#: ../admin/settings.php:143
|
1514 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
1515 |
msgstr "Dieser Effekt fügt ein neues Javascript zu deinem Theme hinzu. Beachte das wp_footer() in deinen Vorlagen aufgerufen wird."
|
1516 |
|
1517 |
+
#: ../admin/settings.php:146
|
1518 |
msgid "Tags / Categories"
|
1519 |
msgstr "Stichwörter / Kategorien"
|
1520 |
|
1521 |
+
#: ../admin/settings.php:149
|
1522 |
msgid "Activate related images"
|
1523 |
msgstr "Verwandte Bilder anzeigen"
|
1524 |
|
1525 |
+
#: ../admin/settings.php:151
|
1526 |
msgid "This option will append related images to every post"
|
1527 |
msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
|
1528 |
|
1529 |
+
#: ../admin/settings.php:155
|
1530 |
msgid "Match with"
|
1531 |
msgstr "Vergleiche mit"
|
1532 |
|
1533 |
+
#: ../admin/settings.php:156
|
1534 |
msgid "Categories"
|
1535 |
msgstr "Kategorien"
|
1536 |
|
1537 |
+
#: ../admin/settings.php:161
|
1538 |
msgid "Max. number of images"
|
1539 |
msgstr "Max. Anzahl der Bilder"
|
1540 |
|
1541 |
+
#: ../admin/settings.php:163
|
1542 |
msgid "0 will show all images"
|
1543 |
msgstr "0 zeige alle verwandten Bilder"
|
1544 |
|
1545 |
+
#: ../admin/settings.php:174
|
1546 |
msgid "Thumbnail settings"
|
1547 |
msgstr "Thumbnail Einstellungen"
|
1548 |
|
1549 |
+
#: ../admin/settings.php:178
|
1550 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
1551 |
msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
|
1552 |
|
1553 |
+
#: ../admin/settings.php:181
|
1554 |
msgid "Width x height (in pixel)"
|
1555 |
msgstr "Breite x Höhe (in Pixel)"
|
1556 |
|
1557 |
+
#: ../admin/settings.php:183
|
1558 |
msgid "These values are maximum values "
|
1559 |
msgstr "Diese Angaben sind maximale Angaben."
|
1560 |
|
1561 |
+
#: ../admin/settings.php:186
|
1562 |
msgid "Set fix dimension"
|
1563 |
msgstr "Setze fixe Größe"
|
1564 |
|
1565 |
+
#: ../admin/settings.php:188
|
1566 |
msgid "Ignore the aspect ratio, no portrait thumbnails"
|
1567 |
msgstr "Ignoriere Bildseitenverhältnis"
|
1568 |
|
1569 |
+
#: ../admin/settings.php:191
|
1570 |
msgid "Crop square thumbnail from image"
|
1571 |
msgstr "Mittige Thumbnails aus Bildern ausschneiden"
|
1572 |
|
1573 |
+
#: ../admin/settings.php:193
|
1574 |
msgid "Create square thumbnails, use only the width setting :"
|
1575 |
msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
|
1576 |
|
1577 |
+
#: ../admin/settings.php:196
|
1578 |
msgid "Thumbnail quality"
|
1579 |
msgstr "Thumbnail Qualität"
|
1580 |
|
1581 |
+
#: ../admin/settings.php:207
|
1582 |
msgid "Image settings"
|
1583 |
msgstr "Bild Einstellungen"
|
1584 |
|
1585 |
+
#: ../admin/settings.php:213
|
1586 |
msgid "Resize Images"
|
1587 |
msgstr "Bilder verkleinern"
|
1588 |
|
1589 |
+
#: ../admin/settings.php:217
|
1590 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1591 |
msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
|
1592 |
|
1593 |
+
#: ../admin/settings.php:220
|
1594 |
msgid "Image quality"
|
1595 |
msgstr "Bild Qualität"
|
1596 |
|
1597 |
+
#: ../admin/settings.php:225
|
1598 |
msgid "Single picture"
|
1599 |
msgstr "Einzelbilder"
|
1600 |
|
1601 |
+
#: ../admin/settings.php:228
|
1602 |
msgid "Cache single pictures"
|
1603 |
msgstr "Nutze Cache für Einzelbidler"
|
1604 |
|
1605 |
+
#: ../admin/settings.php:231
|
1606 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
1607 |
msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
|
1608 |
|
1609 |
+
#: ../admin/settings.php:234
|
1610 |
msgid "Clear cache folder"
|
1611 |
msgstr "Lösche Cache Verzeichnis"
|
1612 |
|
1613 |
+
#: ../admin/settings.php:236
|
1614 |
msgid "Proceed now"
|
1615 |
msgstr "Jetzt durchführen"
|
1616 |
|
1617 |
+
#: ../admin/settings.php:252
|
1618 |
msgid "Deactivate gallery page link"
|
1619 |
msgstr "Keine Seitenverzweigung"
|
1620 |
|
1621 |
+
#: ../admin/settings.php:254
|
1622 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
1623 |
msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
|
1624 |
|
1625 |
+
#: ../admin/settings.php:258
|
1626 |
msgid "Number of images per page"
|
1627 |
msgstr "Anzahl der Bilder pro Seite"
|
1628 |
|
1629 |
+
#: ../admin/settings.php:260
|
1630 |
msgid "0 will disable pagination, all images on one page"
|
1631 |
msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
|
1632 |
|
1633 |
+
#: ../admin/settings.php:264
|
1634 |
msgid "Integrate slideshow"
|
1635 |
msgstr "Slideshow verwenden"
|
1636 |
|
1637 |
+
#: ../admin/settings.php:271
|
1638 |
msgid "Show first"
|
1639 |
msgstr "Zeige als Erstes"
|
1640 |
|
1641 |
+
#: ../admin/settings.php:277
|
1642 |
msgid "Show ImageBrowser"
|
1643 |
msgstr "Zeige Bilder Browser"
|
1644 |
|
1645 |
+
#: ../admin/settings.php:279
|
1646 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
1647 |
msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
|
1648 |
|
1649 |
+
#: ../admin/settings.php:283
|
1650 |
msgid "Sort options"
|
1651 |
msgstr "Sortierung"
|
1652 |
|
1653 |
+
#: ../admin/settings.php:286
|
1654 |
msgid "Sort thumbnails"
|
1655 |
msgstr "Thumbnails sortieren"
|
1656 |
|
1657 |
+
#: ../admin/settings.php:288
|
1658 |
msgid "Custom order"
|
1659 |
msgstr "Benutzerdefiniert"
|
1660 |
|
1661 |
+
#: ../admin/settings.php:291
|
1662 |
msgid "Alt / Title text"
|
1663 |
msgstr "Alt / Titel Text"
|
1664 |
|
1665 |
+
#: ../admin/settings.php:292
|
1666 |
msgid "Date / Time"
|
1667 |
msgstr "Datum/Zeit"
|
1668 |
|
1669 |
+
#: ../admin/settings.php:296
|
1670 |
msgid "Sort direction"
|
1671 |
msgstr "Sortierreihenfolge"
|
1672 |
|
1673 |
+
#: ../admin/settings.php:313
|
1674 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
|
1675 |
msgstr "Hier kannst Du den Effekt für die Thumbnails auswählen. NextGEN Galerie wird den benötigten HTML Code verwenden. Bitte beachte, das nur der Thickbox Effekt automatisch in Dein Theme von Wordpress integriert wird. Alle anderen Effekte mußt Du selbst in die header.php eintragen (JS)."
|
1676 |
|
1677 |
+
#: ../admin/settings.php:314
|
1678 |
msgid "With the placeholder"
|
1679 |
msgstr "Mit Platzhalter"
|
1680 |
|
1681 |
+
#: ../admin/settings.php:314
|
1682 |
msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
|
1683 |
msgstr "Du kannst eine Navigation durch die Bilder aktivieren (hängt vom Effekt ab). Ändere nur die Codezeile falls Du einen anderen Effekt für die Thumbnails verwendest oder einfach weißt, was Du tust."
|
1684 |
|
1685 |
+
#: ../admin/settings.php:317
|
1686 |
msgid "JavaScript Thumbnail effect"
|
1687 |
msgstr "JavaScript Thumbnail Effekt"
|
1688 |
|
1689 |
+
#: ../admin/settings.php:321
|
1690 |
msgid "Thickbox"
|
1691 |
msgstr "Thickbox"
|
1692 |
|
1693 |
+
#: ../admin/settings.php:322
|
1694 |
msgid "Lightbox"
|
1695 |
msgstr "Lightbox"
|
1696 |
|
1697 |
+
#: ../admin/settings.php:323
|
1698 |
msgid "Highslide"
|
1699 |
msgstr "Highslide"
|
1700 |
|
1701 |
+
#: ../admin/settings.php:324
|
1702 |
msgid "Shutter"
|
1703 |
msgstr "Shutter"
|
1704 |
|
1705 |
+
#: ../admin/settings.php:325
|
1706 |
msgid "Custom"
|
1707 |
msgstr "Eigener"
|
1708 |
|
1709 |
+
#: ../admin/settings.php:330
|
1710 |
msgid "Link Code line"
|
1711 |
msgstr "Link Code Zeile"
|
1712 |
|
1713 |
+
#: ../admin/settings.php:348
|
1714 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
1715 |
msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
|
1716 |
|
1717 |
+
#: ../admin/settings.php:353
|
1718 |
msgid "Preview"
|
1719 |
msgstr "Vorschau"
|
1720 |
|
|
|
1721 |
#: ../admin/settings.php:355
|
1722 |
+
#: ../admin/settings.php:360
|
1723 |
msgid "Position"
|
1724 |
msgstr "Position"
|
1725 |
|
1726 |
+
#: ../admin/settings.php:380
|
1727 |
msgid "Offset"
|
1728 |
msgstr "Abstand"
|
1729 |
|
1730 |
+
#: ../admin/settings.php:396
|
1731 |
msgid "Use image as watermark"
|
1732 |
msgstr "Benutze Bild als Wasserzeichen"
|
1733 |
|
1734 |
+
#: ../admin/settings.php:399
|
1735 |
msgid "URL to file"
|
1736 |
msgstr "URL zur Datei"
|
1737 |
|
1738 |
+
#: ../admin/settings.php:401
|
1739 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
1740 |
msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
|
1741 |
|
1742 |
+
#: ../admin/settings.php:404
|
1743 |
msgid "Use text as watermark"
|
1744 |
msgstr "Benutze Text als Wasserzeichen"
|
1745 |
|
1746 |
+
#: ../admin/settings.php:407
|
1747 |
msgid "Font"
|
1748 |
msgstr "Schriftart"
|
1749 |
|
1750 |
+
#: ../admin/settings.php:416
|
1751 |
msgid "This function will not work, cause you need the FreeType library"
|
1752 |
msgstr "Diese Funktion benötigt die FreeType Bibliothek"
|
1753 |
|
1754 |
+
#: ../admin/settings.php:418
|
1755 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
1756 |
msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
|
1757 |
|
1758 |
+
#: ../admin/settings.php:427
|
1759 |
msgid "Color"
|
1760 |
msgstr "Farbe"
|
1761 |
|
1762 |
+
#: ../admin/settings.php:429
|
1763 |
msgid "(hex w/o #)"
|
1764 |
msgstr "(hex w/o #)"
|
1765 |
|
1766 |
+
#: ../admin/settings.php:432
|
1767 |
msgid "Text"
|
1768 |
msgstr "Text"
|
1769 |
|
1770 |
+
#: ../admin/settings.php:436
|
1771 |
msgid "Opaque"
|
1772 |
msgstr "Transparenz"
|
1773 |
|
1774 |
+
#: ../admin/settings.php:452
|
1775 |
msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
|
1776 |
msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
|
1777 |
|
1778 |
+
#: ../admin/settings.php:453
|
1779 |
msgid "The settings are used in the JW Image Rotator Version"
|
1780 |
msgstr "Die Einstellungen werden im JW Image Rotator benutzt , in der Version"
|
1781 |
|
1782 |
+
#: ../admin/settings.php:454
|
1783 |
msgid "See more information for the Flash Player on the web page"
|
1784 |
msgstr "Weitere Informationen auf der Flash Player Homepage"
|
1785 |
|
1786 |
+
#: ../admin/settings.php:458
|
1787 |
msgid "Default size (W x H)"
|
1788 |
msgstr "Standard Größe (B x H)"
|
1789 |
|
1790 |
+
#: ../admin/settings.php:463
|
1791 |
msgid "Shuffle mode"
|
1792 |
msgstr "Shuffle Modus"
|
1793 |
|
1794 |
+
#: ../admin/settings.php:467
|
1795 |
msgid "Show next image on click"
|
1796 |
msgstr "Zeige nächstes Bild bei Klick"
|
1797 |
|
1798 |
+
#: ../admin/settings.php:471
|
1799 |
msgid "Show navigation bar"
|
1800 |
msgstr "Zeige Navigations-Leiste"
|
1801 |
|
1802 |
+
#: ../admin/settings.php:475
|
1803 |
msgid "Show loading icon"
|
1804 |
msgstr "Zeige Lade-Bildchen"
|
1805 |
|
1806 |
+
#: ../admin/settings.php:479
|
1807 |
msgid "Use watermark logo"
|
1808 |
msgstr "Wasserzeichen anzeigen"
|
1809 |
|
1810 |
+
#: ../admin/settings.php:481
|
1811 |
msgid "You can change the logo at the watermark settings"
|
1812 |
msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
|
1813 |
|
1814 |
+
#: ../admin/settings.php:484
|
1815 |
msgid "Stretch image"
|
1816 |
msgstr "Bild dehnen"
|
1817 |
|
1818 |
+
#: ../admin/settings.php:487
|
1819 |
msgid "true"
|
1820 |
msgstr "Ja"
|
1821 |
|
1822 |
+
#: ../admin/settings.php:488
|
1823 |
msgid "false"
|
1824 |
msgstr "Nein"
|
1825 |
|
1826 |
+
#: ../admin/settings.php:489
|
1827 |
msgid "fit"
|
1828 |
msgstr "Passend"
|
1829 |
|
1830 |
+
#: ../admin/settings.php:490
|
1831 |
msgid "none"
|
1832 |
msgstr "keiner"
|
1833 |
|
1834 |
+
#: ../admin/settings.php:495
|
1835 |
msgid "Duration time"
|
1836 |
msgstr "Dauer"
|
1837 |
|
1838 |
+
#: ../admin/settings.php:496
|
1839 |
msgid "sec."
|
1840 |
msgstr "Sek."
|
1841 |
|
1842 |
+
#: ../admin/settings.php:499
|
1843 |
msgid "Transition / Fade effect"
|
1844 |
msgstr "Fade Effekt"
|
1845 |
|
1846 |
+
#: ../admin/settings.php:502
|
1847 |
msgid "fade"
|
1848 |
msgstr "Fade"
|
1849 |
|
1850 |
+
#: ../admin/settings.php:503
|
1851 |
msgid "bgfade"
|
1852 |
msgstr "BGFade"
|
1853 |
|
1854 |
+
#: ../admin/settings.php:504
|
1855 |
msgid "slowfade"
|
1856 |
msgstr "Slowfade"
|
1857 |
|
1858 |
+
#: ../admin/settings.php:505
|
1859 |
msgid "circles"
|
1860 |
msgstr "Kreise"
|
1861 |
|
1862 |
+
#: ../admin/settings.php:506
|
1863 |
msgid "bubbles"
|
1864 |
msgstr "Blasen"
|
1865 |
|
1866 |
+
#: ../admin/settings.php:507
|
1867 |
msgid "blocks"
|
1868 |
msgstr "Blöcke"
|
1869 |
|
1870 |
+
#: ../admin/settings.php:508
|
1871 |
msgid "fluids"
|
1872 |
msgstr "Fluids"
|
1873 |
|
1874 |
+
#: ../admin/settings.php:509
|
1875 |
msgid "flash"
|
1876 |
msgstr "Flash"
|
1877 |
|
1878 |
+
#: ../admin/settings.php:510
|
1879 |
msgid "lines"
|
1880 |
msgstr "Linien"
|
1881 |
|
1882 |
+
#: ../admin/settings.php:511
|
1883 |
msgid "random"
|
1884 |
msgstr "Zufall"
|
1885 |
|
1886 |
+
#: ../admin/settings.php:515
|
1887 |
msgid "Use slow zooming effect"
|
1888 |
msgstr "nutze Zoom Effekt"
|
1889 |
|
1890 |
+
#: ../admin/settings.php:519
|
1891 |
msgid "Background Color"
|
1892 |
msgstr "Hintergrund (BG) Farbe"
|
1893 |
|
1894 |
+
#: ../admin/settings.php:524
|
1895 |
msgid "Texts / Buttons Color"
|
1896 |
msgstr "Text- / Button Farbe"
|
1897 |
|
1898 |
+
#: ../admin/settings.php:529
|
1899 |
msgid "Rollover / Active Color"
|
1900 |
msgstr "Rollover / Aktiv (Link) Farbe"
|
1901 |
|
1902 |
+
#: ../admin/settings.php:534
|
1903 |
msgid "Screen Color"
|
1904 |
msgstr "Seiten Farbe"
|
1905 |
|
1906 |
+
#: ../admin/settings.php:539
|
1907 |
msgid "Background music (URL)"
|
1908 |
msgstr "Hintergrundmusik (URL)"
|
1909 |
|
1910 |
+
#: ../admin/settings.php:543
|
1911 |
msgid "Try XHTML validation (with CDATA)"
|
1912 |
msgstr "Integriere XHTML Validierung (mittels CDATA)"
|
1913 |
|
1914 |
+
#: ../admin/settings.php:545
|
1915 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
1916 |
msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
|
1917 |
|
2180 |
msgid "Slug(s) to set:"
|
2181 |
msgstr "Schlagwörter setzen:"
|
2182 |
|
2183 |
+
#: ../admin/upgrade.php:22
|
2184 |
+
msgid "Upgrade database structure..."
|
2185 |
+
msgstr "Aktualisiere die Datenbank-Struturen..."
|
2186 |
+
|
2187 |
#: ../admin/upgrade.php:74
|
2188 |
+
#: ../admin/upgrade.php:80
|
2189 |
+
#: ../admin/upgrade.php:87
|
2190 |
+
msgid "finished"
|
2191 |
+
msgstr "beendet"
|
2192 |
|
2193 |
+
#: ../admin/upgrade.php:78
|
2194 |
+
msgid "Update file structure..."
|
2195 |
+
msgstr "Aktualisiere Verzeichnisse..."
|
2196 |
+
|
2197 |
+
#: ../admin/upgrade.php:85
|
2198 |
+
msgid "Import date and time information..."
|
2199 |
+
msgstr "Importiere Datum/Uhrzeit..."
|
2200 |
+
|
2201 |
+
#: ../admin/upgrade.php:151
|
2202 |
msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
|
2203 |
msgstr "Einige Verzeichnisse / Bilder konnten nicht umbenannt werden, bitte überprüfe die Zugriffsrechte und Scanne dann das Verzeichnis neu ein."
|
2204 |
|
2205 |
+
#: ../admin/upgrade.php:153
|
2206 |
msgid "Rename failed"
|
2207 |
msgstr "Konnte nicht umbenannt werden"
|
2208 |
|
2209 |
+
#: ../admin/upgrade.php:193
|
2210 |
+
#: ../admin/upgrade.php:213
|
2211 |
msgid "Upgrade NextGEN Gallery"
|
2212 |
msgstr "NextGEN Gallery aktualisieren"
|
2213 |
|
2214 |
+
#: ../admin/upgrade.php:194
|
2215 |
msgid "The script detect that you upgrade from a older version."
|
2216 |
msgstr "Es wurde eine ältere NextGEN Datenbank erkannt."
|
2217 |
|
2218 |
+
#: ../admin/upgrade.php:195
|
2219 |
msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
|
2220 |
msgstr "Deinen Datenbank für NextGEN Gallery ist nicht auf dem aktuellen Stand, Sie muss jetzt aktualisiert werden."
|
2221 |
|
2222 |
+
#: ../admin/upgrade.php:196
|
2223 |
msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
|
2224 |
msgstr "Wenn du wieder auf eine älter Version zurückgehen möchtest, musst du vorher die Datenbank sichern."
|
2225 |
|
2226 |
+
#: ../admin/upgrade.php:197
|
2227 |
msgid "The upgrade process may take a while, so please be patient."
|
2228 |
msgstr "Der Upgrade Prozess kann etwas dauern, bitte sei geduldig..."
|
2229 |
|
2230 |
+
#: ../admin/upgrade.php:198
|
2231 |
msgid "Start upgrade now"
|
2232 |
msgstr "Aktualisierung starten"
|
2233 |
|
2234 |
+
#: ../admin/upgrade.php:215
|
2235 |
msgid "Upgrade sucessfull"
|
2236 |
msgstr "Aktualisierung erfolgreich"
|
2237 |
|
2238 |
+
#: ../admin/upgrade.php:216
|
2239 |
msgid "Continue"
|
2240 |
msgstr "Weiter"
|
2241 |
|
2360 |
msgid "Insert"
|
2361 |
msgstr "Einfügen"
|
2362 |
|
2363 |
+
#: ../lib/meta.php:87
|
2364 |
msgid " mm"
|
2365 |
msgstr " mm"
|
2366 |
|
2367 |
+
#: ../lib/meta.php:93
|
2368 |
msgid " sec"
|
2369 |
msgstr " Sek."
|
2370 |
|
2371 |
+
#: ../lib/meta.php:371
|
2372 |
#: ../view/imagebrowser-exif.php:42
|
2373 |
msgid "Aperture"
|
2374 |
msgstr "Blende"
|
2375 |
|
2376 |
+
#: ../lib/meta.php:372
|
2377 |
+
#: ../lib/meta.php:397
|
2378 |
msgid "Credit"
|
2379 |
msgstr "Autor"
|
2380 |
|
2381 |
+
#: ../lib/meta.php:373
|
2382 |
msgid "Camera"
|
2383 |
msgstr "Kamera"
|
2384 |
|
2385 |
+
#: ../lib/meta.php:374
|
2386 |
msgid "Caption"
|
2387 |
msgstr "Beschreibung"
|
2388 |
|
2389 |
+
#: ../lib/meta.php:376
|
2390 |
msgid "Copyright"
|
2391 |
msgstr "Rechte"
|
2392 |
|
2393 |
+
#: ../lib/meta.php:377
|
2394 |
msgid "Focal length"
|
2395 |
msgstr "Brennweite"
|
2396 |
|
2397 |
+
#: ../lib/meta.php:378
|
2398 |
msgid "ISO"
|
2399 |
msgstr "ISO"
|
2400 |
|
2401 |
+
#: ../lib/meta.php:379
|
2402 |
#: ../view/imagebrowser-exif.php:50
|
2403 |
msgid "Shutter speed"
|
2404 |
msgstr "Belichtungszeit"
|
2405 |
|
2406 |
+
#: ../lib/meta.php:383
|
2407 |
msgid "Subject"
|
2408 |
msgstr "Betreff"
|
2409 |
|
2410 |
+
#: ../lib/meta.php:384
|
2411 |
msgid "Make"
|
2412 |
msgstr "Hersteller"
|
2413 |
|
2414 |
+
#: ../lib/meta.php:385
|
2415 |
msgid "Edit Status"
|
2416 |
msgstr "Ändere Status"
|
2417 |
|
2418 |
+
#: ../lib/meta.php:386
|
2419 |
msgid "Category"
|
2420 |
msgstr "Kategorie"
|
2421 |
|
2422 |
+
#: ../lib/meta.php:387
|
2423 |
msgid "Keywords"
|
2424 |
msgstr "Schlüsselwörter"
|
2425 |
|
2426 |
+
#: ../lib/meta.php:388
|
2427 |
msgid "Date Created"
|
2428 |
msgstr "erstellt (Datum)"
|
2429 |
|
2430 |
+
#: ../lib/meta.php:389
|
2431 |
msgid "Time Created"
|
2432 |
msgstr "erstellt (Zeit)"
|
2433 |
|
2434 |
+
#: ../lib/meta.php:390
|
2435 |
msgid "Author Position"
|
2436 |
msgstr "Autor Position"
|
2437 |
|
2438 |
+
#: ../lib/meta.php:391
|
2439 |
msgid "City"
|
2440 |
msgstr "Stadt"
|
2441 |
|
2442 |
+
#: ../lib/meta.php:392
|
2443 |
msgid "Location"
|
2444 |
msgstr "Ort"
|
2445 |
|
2446 |
+
#: ../lib/meta.php:393
|
2447 |
msgid "Province/State"
|
2448 |
msgstr "Staat / PLZ"
|
2449 |
|
2450 |
+
#: ../lib/meta.php:394
|
2451 |
msgid "Country code"
|
2452 |
msgstr "Landescode"
|
2453 |
|
2454 |
+
#: ../lib/meta.php:395
|
2455 |
msgid "Country"
|
2456 |
msgstr "Land"
|
2457 |
|
2458 |
+
#: ../lib/meta.php:396
|
2459 |
msgid "Headline"
|
2460 |
msgstr "Kopfzeile"
|
2461 |
|
2462 |
+
#: ../lib/meta.php:398
|
2463 |
msgid "Source"
|
2464 |
msgstr "Quelle"
|
2465 |
|
2466 |
+
#: ../lib/meta.php:399
|
2467 |
msgid "Copyright Notice"
|
2468 |
msgstr "Copyright Hinweise / Credits"
|
2469 |
|
2470 |
+
#: ../lib/meta.php:400
|
2471 |
msgid "Contact"
|
2472 |
msgstr "Kontakt"
|
2473 |
|
2474 |
+
#: ../lib/meta.php:401
|
2475 |
msgid "Last modified"
|
2476 |
msgstr "Zuletzt geändert"
|
2477 |
|
2478 |
+
#: ../lib/meta.php:402
|
2479 |
msgid "Program tool"
|
2480 |
msgstr "Programm"
|
2481 |
|
2482 |
+
#: ../lib/meta.php:403
|
2483 |
msgid "Format"
|
2484 |
msgstr "Format"
|
2485 |
|
lang/nggallery.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2008-12-
|
6 |
-
"PO-Revision-Date: 2008-12-
|
7 |
"Last-Translator: Alex Rabe <no@email.com>\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -802,11 +802,11 @@ msgstr ""
|
|
802 |
msgid "NextGEN Gallery : Tables could not created, please check your database settings"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: ../admin/install.php:
|
806 |
msgid "[Show as slideshow]"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: ../admin/install.php:
|
810 |
msgid "[Show picture list]"
|
811 |
msgstr ""
|
812 |
|
@@ -1158,7 +1158,7 @@ msgid "Alignment"
|
|
1158 |
msgstr ""
|
1159 |
|
1160 |
#: ../admin/media-upload.php:198
|
1161 |
-
#: ../admin/settings.php:
|
1162 |
msgid "None"
|
1163 |
msgstr ""
|
1164 |
|
@@ -1178,7 +1178,7 @@ msgid "Right"
|
|
1178 |
msgstr ""
|
1179 |
|
1180 |
#: ../admin/media-upload.php:208
|
1181 |
-
#: ../admin/settings.php:
|
1182 |
msgid "Size"
|
1183 |
msgstr ""
|
1184 |
|
@@ -1426,485 +1426,485 @@ msgstr ""
|
|
1426 |
msgid "Update capabilities"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: ../admin/settings.php:
|
1430 |
msgid "Cache cleared"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: ../admin/settings.php:
|
1434 |
-
#: ../admin/settings.php:
|
1435 |
msgid "General Options"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: ../admin/settings.php:
|
1439 |
-
#: ../admin/settings.php:
|
1440 |
msgid "Thumbnails"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: ../admin/settings.php:
|
1444 |
msgid "Images"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: ../admin/settings.php:
|
1448 |
-
#: ../admin/settings.php:
|
1449 |
msgid "Effects"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: ../admin/settings.php:
|
1453 |
-
#: ../admin/settings.php:
|
1454 |
#: ../admin/tinymce/window.php:118
|
1455 |
msgid "Watermark"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: ../admin/settings.php:
|
1459 |
-
#: ../admin/settings.php:
|
1460 |
-
#: ../admin/settings.php:
|
1461 |
#: ../admin/tinymce/window.php:57
|
1462 |
msgid "Slideshow"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: ../admin/settings.php:
|
1466 |
#: ../admin/wpmu.php:48
|
1467 |
msgid "Gallery path"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: ../admin/settings.php:
|
1471 |
msgid "This is the default path for all galleries"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: ../admin/settings.php:
|
1475 |
msgid "Delete image files"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: ../admin/settings.php:
|
1479 |
msgid "Delete files, when removing a gallery in the database"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: ../admin/settings.php:
|
1483 |
msgid "Activate permalinks"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: ../admin/settings.php:
|
1487 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: ../admin/settings.php:
|
1491 |
msgid "Select graphic library"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: ../admin/settings.php:
|
1495 |
msgid "GD Library"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: ../admin/settings.php:
|
1499 |
msgid "ImageMagick (Experimental). Path to the library :"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: ../admin/settings.php:
|
1503 |
msgid "Activate PicLens/CoolIris support"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: ../admin/settings.php:
|
1507 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: ../admin/settings.php:
|
1511 |
msgid "Tags / Categories"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: ../admin/settings.php:
|
1515 |
msgid "Activate related images"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: ../admin/settings.php:
|
1519 |
msgid "This option will append related images to every post"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: ../admin/settings.php:
|
1523 |
msgid "Match with"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: ../admin/settings.php:
|
1527 |
msgid "Categories"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: ../admin/settings.php:
|
1531 |
msgid "Max. number of images"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: ../admin/settings.php:
|
1535 |
msgid "0 will show all images"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: ../admin/settings.php:
|
1539 |
msgid "Thumbnail settings"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: ../admin/settings.php:
|
1543 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: ../admin/settings.php:
|
1547 |
msgid "Width x height (in pixel)"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: ../admin/settings.php:
|
1551 |
msgid "These values are maximum values "
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: ../admin/settings.php:
|
1555 |
msgid "Set fix dimension"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: ../admin/settings.php:
|
1559 |
msgid "Ignore the aspect ratio, no portrait thumbnails"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: ../admin/settings.php:
|
1563 |
msgid "Crop square thumbnail from image"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: ../admin/settings.php:
|
1567 |
msgid "Create square thumbnails, use only the width setting :"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: ../admin/settings.php:
|
1571 |
msgid "Thumbnail quality"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: ../admin/settings.php:
|
1575 |
msgid "Image settings"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: ../admin/settings.php:
|
1579 |
msgid "Resize Images"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: ../admin/settings.php:
|
1583 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: ../admin/settings.php:
|
1587 |
msgid "Image quality"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: ../admin/settings.php:
|
1591 |
msgid "Single picture"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: ../admin/settings.php:
|
1595 |
msgid "Cache single pictures"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: ../admin/settings.php:
|
1599 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: ../admin/settings.php:
|
1603 |
msgid "Clear cache folder"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: ../admin/settings.php:
|
1607 |
msgid "Proceed now"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: ../admin/settings.php:
|
1611 |
msgid "Deactivate gallery page link"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: ../admin/settings.php:
|
1615 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: ../admin/settings.php:
|
1619 |
msgid "Number of images per page"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: ../admin/settings.php:
|
1623 |
msgid "0 will disable pagination, all images on one page"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: ../admin/settings.php:
|
1627 |
msgid "Integrate slideshow"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: ../admin/settings.php:
|
1631 |
msgid "Show first"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: ../admin/settings.php:
|
1635 |
msgid "Show ImageBrowser"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: ../admin/settings.php:
|
1639 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: ../admin/settings.php:
|
1643 |
msgid "Sort options"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: ../admin/settings.php:
|
1647 |
msgid "Sort thumbnails"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: ../admin/settings.php:
|
1651 |
msgid "Custom order"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: ../admin/settings.php:
|
1655 |
msgid "Alt / Title text"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: ../admin/settings.php:
|
1659 |
msgid "Date / Time"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: ../admin/settings.php:
|
1663 |
msgid "Sort direction"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: ../admin/settings.php:
|
1667 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: ../admin/settings.php:
|
1671 |
msgid "With the placeholder"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: ../admin/settings.php:
|
1675 |
msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: ../admin/settings.php:
|
1679 |
msgid "JavaScript Thumbnail effect"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: ../admin/settings.php:
|
1683 |
msgid "Thickbox"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: ../admin/settings.php:
|
1687 |
msgid "Lightbox"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: ../admin/settings.php:
|
1691 |
msgid "Highslide"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: ../admin/settings.php:
|
1695 |
msgid "Shutter"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: ../admin/settings.php:
|
1699 |
msgid "Custom"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: ../admin/settings.php:
|
1703 |
msgid "Link Code line"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: ../admin/settings.php:
|
1707 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: ../admin/settings.php:
|
1711 |
msgid "Preview"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: ../admin/settings.php:350
|
1715 |
#: ../admin/settings.php:355
|
|
|
1716 |
msgid "Position"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: ../admin/settings.php:
|
1720 |
msgid "Offset"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: ../admin/settings.php:
|
1724 |
msgid "Use image as watermark"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: ../admin/settings.php:
|
1728 |
msgid "URL to file"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: ../admin/settings.php:
|
1732 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: ../admin/settings.php:
|
1736 |
msgid "Use text as watermark"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: ../admin/settings.php:
|
1740 |
msgid "Font"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: ../admin/settings.php:
|
1744 |
msgid "This function will not work, cause you need the FreeType library"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: ../admin/settings.php:
|
1748 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: ../admin/settings.php:
|
1752 |
msgid "Color"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: ../admin/settings.php:
|
1756 |
msgid "(hex w/o #)"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: ../admin/settings.php:
|
1760 |
msgid "Text"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: ../admin/settings.php:
|
1764 |
msgid "Opaque"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: ../admin/settings.php:
|
1768 |
msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: ../admin/settings.php:
|
1772 |
msgid "The settings are used in the JW Image Rotator Version"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: ../admin/settings.php:
|
1776 |
msgid "See more information for the Flash Player on the web page"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: ../admin/settings.php:
|
1780 |
msgid "Default size (W x H)"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: ../admin/settings.php:
|
1784 |
msgid "Shuffle mode"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: ../admin/settings.php:
|
1788 |
msgid "Show next image on click"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: ../admin/settings.php:
|
1792 |
msgid "Show navigation bar"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: ../admin/settings.php:
|
1796 |
msgid "Show loading icon"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: ../admin/settings.php:
|
1800 |
msgid "Use watermark logo"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: ../admin/settings.php:
|
1804 |
msgid "You can change the logo at the watermark settings"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: ../admin/settings.php:
|
1808 |
msgid "Stretch image"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: ../admin/settings.php:
|
1812 |
msgid "true"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: ../admin/settings.php:
|
1816 |
msgid "false"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: ../admin/settings.php:
|
1820 |
msgid "fit"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: ../admin/settings.php:
|
1824 |
msgid "none"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: ../admin/settings.php:
|
1828 |
msgid "Duration time"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: ../admin/settings.php:
|
1832 |
msgid "sec."
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: ../admin/settings.php:
|
1836 |
msgid "Transition / Fade effect"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: ../admin/settings.php:
|
1840 |
msgid "fade"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: ../admin/settings.php:
|
1844 |
msgid "bgfade"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: ../admin/settings.php:
|
1848 |
msgid "slowfade"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: ../admin/settings.php:
|
1852 |
msgid "circles"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: ../admin/settings.php:
|
1856 |
msgid "bubbles"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: ../admin/settings.php:
|
1860 |
msgid "blocks"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: ../admin/settings.php:
|
1864 |
msgid "fluids"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: ../admin/settings.php:
|
1868 |
msgid "flash"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: ../admin/settings.php:
|
1872 |
msgid "lines"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: ../admin/settings.php:
|
1876 |
msgid "random"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: ../admin/settings.php:
|
1880 |
msgid "Use slow zooming effect"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: ../admin/settings.php:
|
1884 |
msgid "Background Color"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: ../admin/settings.php:
|
1888 |
msgid "Texts / Buttons Color"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: ../admin/settings.php:
|
1892 |
msgid "Rollover / Active Color"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: ../admin/settings.php:
|
1896 |
msgid "Screen Color"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: ../admin/settings.php:
|
1900 |
msgid "Background music (URL)"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: ../admin/settings.php:
|
1904 |
msgid "Try XHTML validation (with CDATA)"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: ../admin/settings.php:
|
1908 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
1909 |
msgstr ""
|
1910 |
|
@@ -2166,48 +2166,62 @@ msgstr ""
|
|
2166 |
msgid "Slug(s) to set:"
|
2167 |
msgstr ""
|
2168 |
|
|
|
|
|
|
|
|
|
2169 |
#: ../admin/upgrade.php:74
|
2170 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: ../admin/upgrade.php:
|
|
|
|
|
|
|
|
|
2174 |
msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: ../admin/upgrade.php:
|
2178 |
msgid "Rename failed"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: ../admin/upgrade.php:
|
2182 |
-
#: ../admin/upgrade.php:
|
2183 |
msgid "Upgrade NextGEN Gallery"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: ../admin/upgrade.php:
|
2187 |
msgid "The script detect that you upgrade from a older version."
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: ../admin/upgrade.php:
|
2191 |
msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: ../admin/upgrade.php:
|
2195 |
msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: ../admin/upgrade.php:
|
2199 |
msgid "The upgrade process may take a while, so please be patient."
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: ../admin/upgrade.php:
|
2203 |
msgid "Start upgrade now"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: ../admin/upgrade.php:
|
2207 |
msgid "Upgrade sucessfull"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: ../admin/upgrade.php:
|
2211 |
msgid "Continue"
|
2212 |
msgstr ""
|
2213 |
|
@@ -2332,126 +2346,126 @@ msgstr ""
|
|
2332 |
msgid "Insert"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: ../lib/meta.php:
|
2336 |
msgid " mm"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: ../lib/meta.php:
|
2340 |
msgid " sec"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: ../lib/meta.php:
|
2344 |
#: ../view/imagebrowser-exif.php:42
|
2345 |
msgid "Aperture"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: ../lib/meta.php:
|
2349 |
-
#: ../lib/meta.php:
|
2350 |
msgid "Credit"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: ../lib/meta.php:
|
2354 |
msgid "Camera"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: ../lib/meta.php:
|
2358 |
msgid "Caption"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: ../lib/meta.php:
|
2362 |
msgid "Copyright"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: ../lib/meta.php:
|
2366 |
msgid "Focal length"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: ../lib/meta.php:
|
2370 |
msgid "ISO"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: ../lib/meta.php:
|
2374 |
#: ../view/imagebrowser-exif.php:50
|
2375 |
msgid "Shutter speed"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: ../lib/meta.php:
|
2379 |
msgid "Subject"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: ../lib/meta.php:
|
2383 |
msgid "Make"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: ../lib/meta.php:
|
2387 |
msgid "Edit Status"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: ../lib/meta.php:
|
2391 |
msgid "Category"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: ../lib/meta.php:
|
2395 |
msgid "Keywords"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: ../lib/meta.php:
|
2399 |
msgid "Date Created"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: ../lib/meta.php:
|
2403 |
msgid "Time Created"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: ../lib/meta.php:
|
2407 |
msgid "Author Position"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: ../lib/meta.php:
|
2411 |
msgid "City"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: ../lib/meta.php:
|
2415 |
msgid "Location"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: ../lib/meta.php:
|
2419 |
msgid "Province/State"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: ../lib/meta.php:
|
2423 |
msgid "Country code"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: ../lib/meta.php:
|
2427 |
msgid "Country"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: ../lib/meta.php:
|
2431 |
msgid "Headline"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: ../lib/meta.php:
|
2435 |
msgid "Source"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: ../lib/meta.php:
|
2439 |
msgid "Copyright Notice"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: ../lib/meta.php:
|
2443 |
msgid "Contact"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: ../lib/meta.php:
|
2447 |
msgid "Last modified"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: ../lib/meta.php:
|
2451 |
msgid "Program tool"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: ../lib/meta.php:
|
2455 |
msgid "Format"
|
2456 |
msgstr ""
|
2457 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-12-11 20:27+0100\n"
|
6 |
+
"PO-Revision-Date: 2008-12-11 20:27+0100\n"
|
7 |
"Last-Translator: Alex Rabe <no@email.com>\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
802 |
msgid "NextGEN Gallery : Tables could not created, please check your database settings"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../admin/install.php:156
|
806 |
msgid "[Show as slideshow]"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../admin/install.php:157
|
810 |
msgid "[Show picture list]"
|
811 |
msgstr ""
|
812 |
|
1158 |
msgstr ""
|
1159 |
|
1160 |
#: ../admin/media-upload.php:198
|
1161 |
+
#: ../admin/settings.php:320
|
1162 |
msgid "None"
|
1163 |
msgstr ""
|
1164 |
|
1178 |
msgstr ""
|
1179 |
|
1180 |
#: ../admin/media-upload.php:208
|
1181 |
+
#: ../admin/settings.php:423
|
1182 |
msgid "Size"
|
1183 |
msgstr ""
|
1184 |
|
1426 |
msgid "Update capabilities"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: ../admin/settings.php:53
|
1430 |
msgid "Cache cleared"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: ../admin/settings.php:101
|
1434 |
+
#: ../admin/settings.php:113
|
1435 |
msgid "General Options"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: ../admin/settings.php:102
|
1439 |
+
#: ../admin/settings.php:272
|
1440 |
msgid "Thumbnails"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: ../admin/settings.php:103
|
1444 |
msgid "Images"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: ../admin/settings.php:105
|
1448 |
+
#: ../admin/settings.php:309
|
1449 |
msgid "Effects"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: ../admin/settings.php:106
|
1453 |
+
#: ../admin/settings.php:347
|
1454 |
#: ../admin/tinymce/window.php:118
|
1455 |
msgid "Watermark"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: ../admin/settings.php:107
|
1459 |
+
#: ../admin/settings.php:273
|
1460 |
+
#: ../admin/settings.php:451
|
1461 |
#: ../admin/tinymce/window.php:57
|
1462 |
msgid "Slideshow"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: ../admin/settings.php:119
|
1466 |
#: ../admin/wpmu.php:48
|
1467 |
msgid "Gallery path"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: ../admin/settings.php:121
|
1471 |
msgid "This is the default path for all galleries"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: ../admin/settings.php:124
|
1475 |
msgid "Delete image files"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: ../admin/settings.php:126
|
1479 |
msgid "Delete files, when removing a gallery in the database"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: ../admin/settings.php:129
|
1483 |
msgid "Activate permalinks"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: ../admin/settings.php:131
|
1487 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: ../admin/settings.php:134
|
1491 |
msgid "Select graphic library"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: ../admin/settings.php:135
|
1495 |
msgid "GD Library"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: ../admin/settings.php:136
|
1499 |
msgid "ImageMagick (Experimental). Path to the library :"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: ../admin/settings.php:141
|
1503 |
msgid "Activate PicLens/CoolIris support"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: ../admin/settings.php:143
|
1507 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: ../admin/settings.php:146
|
1511 |
msgid "Tags / Categories"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: ../admin/settings.php:149
|
1515 |
msgid "Activate related images"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: ../admin/settings.php:151
|
1519 |
msgid "This option will append related images to every post"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: ../admin/settings.php:155
|
1523 |
msgid "Match with"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: ../admin/settings.php:156
|
1527 |
msgid "Categories"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: ../admin/settings.php:161
|
1531 |
msgid "Max. number of images"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: ../admin/settings.php:163
|
1535 |
msgid "0 will show all images"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: ../admin/settings.php:174
|
1539 |
msgid "Thumbnail settings"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: ../admin/settings.php:178
|
1543 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: ../admin/settings.php:181
|
1547 |
msgid "Width x height (in pixel)"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: ../admin/settings.php:183
|
1551 |
msgid "These values are maximum values "
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: ../admin/settings.php:186
|
1555 |
msgid "Set fix dimension"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: ../admin/settings.php:188
|
1559 |
msgid "Ignore the aspect ratio, no portrait thumbnails"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: ../admin/settings.php:191
|
1563 |
msgid "Crop square thumbnail from image"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: ../admin/settings.php:193
|
1567 |
msgid "Create square thumbnails, use only the width setting :"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: ../admin/settings.php:196
|
1571 |
msgid "Thumbnail quality"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: ../admin/settings.php:207
|
1575 |
msgid "Image settings"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: ../admin/settings.php:213
|
1579 |
msgid "Resize Images"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: ../admin/settings.php:217
|
1583 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: ../admin/settings.php:220
|
1587 |
msgid "Image quality"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: ../admin/settings.php:225
|
1591 |
msgid "Single picture"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: ../admin/settings.php:228
|
1595 |
msgid "Cache single pictures"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: ../admin/settings.php:231
|
1599 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: ../admin/settings.php:234
|
1603 |
msgid "Clear cache folder"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: ../admin/settings.php:236
|
1607 |
msgid "Proceed now"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: ../admin/settings.php:252
|
1611 |
msgid "Deactivate gallery page link"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: ../admin/settings.php:254
|
1615 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: ../admin/settings.php:258
|
1619 |
msgid "Number of images per page"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: ../admin/settings.php:260
|
1623 |
msgid "0 will disable pagination, all images on one page"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: ../admin/settings.php:264
|
1627 |
msgid "Integrate slideshow"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: ../admin/settings.php:271
|
1631 |
msgid "Show first"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: ../admin/settings.php:277
|
1635 |
msgid "Show ImageBrowser"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: ../admin/settings.php:279
|
1639 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: ../admin/settings.php:283
|
1643 |
msgid "Sort options"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: ../admin/settings.php:286
|
1647 |
msgid "Sort thumbnails"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: ../admin/settings.php:288
|
1651 |
msgid "Custom order"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: ../admin/settings.php:291
|
1655 |
msgid "Alt / Title text"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: ../admin/settings.php:292
|
1659 |
msgid "Date / Time"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: ../admin/settings.php:296
|
1663 |
msgid "Sort direction"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: ../admin/settings.php:313
|
1667 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: ../admin/settings.php:314
|
1671 |
msgid "With the placeholder"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: ../admin/settings.php:314
|
1675 |
msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: ../admin/settings.php:317
|
1679 |
msgid "JavaScript Thumbnail effect"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: ../admin/settings.php:321
|
1683 |
msgid "Thickbox"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: ../admin/settings.php:322
|
1687 |
msgid "Lightbox"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: ../admin/settings.php:323
|
1691 |
msgid "Highslide"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: ../admin/settings.php:324
|
1695 |
msgid "Shutter"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: ../admin/settings.php:325
|
1699 |
msgid "Custom"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: ../admin/settings.php:330
|
1703 |
msgid "Link Code line"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: ../admin/settings.php:348
|
1707 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: ../admin/settings.php:353
|
1711 |
msgid "Preview"
|
1712 |
msgstr ""
|
1713 |
|
|
|
1714 |
#: ../admin/settings.php:355
|
1715 |
+
#: ../admin/settings.php:360
|
1716 |
msgid "Position"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: ../admin/settings.php:380
|
1720 |
msgid "Offset"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: ../admin/settings.php:396
|
1724 |
msgid "Use image as watermark"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: ../admin/settings.php:399
|
1728 |
msgid "URL to file"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: ../admin/settings.php:401
|
1732 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: ../admin/settings.php:404
|
1736 |
msgid "Use text as watermark"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: ../admin/settings.php:407
|
1740 |
msgid "Font"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: ../admin/settings.php:416
|
1744 |
msgid "This function will not work, cause you need the FreeType library"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: ../admin/settings.php:418
|
1748 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: ../admin/settings.php:427
|
1752 |
msgid "Color"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: ../admin/settings.php:429
|
1756 |
msgid "(hex w/o #)"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: ../admin/settings.php:432
|
1760 |
msgid "Text"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: ../admin/settings.php:436
|
1764 |
msgid "Opaque"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: ../admin/settings.php:452
|
1768 |
msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: ../admin/settings.php:453
|
1772 |
msgid "The settings are used in the JW Image Rotator Version"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: ../admin/settings.php:454
|
1776 |
msgid "See more information for the Flash Player on the web page"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: ../admin/settings.php:458
|
1780 |
msgid "Default size (W x H)"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: ../admin/settings.php:463
|
1784 |
msgid "Shuffle mode"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: ../admin/settings.php:467
|
1788 |
msgid "Show next image on click"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: ../admin/settings.php:471
|
1792 |
msgid "Show navigation bar"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: ../admin/settings.php:475
|
1796 |
msgid "Show loading icon"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: ../admin/settings.php:479
|
1800 |
msgid "Use watermark logo"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: ../admin/settings.php:481
|
1804 |
msgid "You can change the logo at the watermark settings"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: ../admin/settings.php:484
|
1808 |
msgid "Stretch image"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: ../admin/settings.php:487
|
1812 |
msgid "true"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: ../admin/settings.php:488
|
1816 |
msgid "false"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: ../admin/settings.php:489
|
1820 |
msgid "fit"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: ../admin/settings.php:490
|
1824 |
msgid "none"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: ../admin/settings.php:495
|
1828 |
msgid "Duration time"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: ../admin/settings.php:496
|
1832 |
msgid "sec."
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: ../admin/settings.php:499
|
1836 |
msgid "Transition / Fade effect"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: ../admin/settings.php:502
|
1840 |
msgid "fade"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: ../admin/settings.php:503
|
1844 |
msgid "bgfade"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: ../admin/settings.php:504
|
1848 |
msgid "slowfade"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: ../admin/settings.php:505
|
1852 |
msgid "circles"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: ../admin/settings.php:506
|
1856 |
msgid "bubbles"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: ../admin/settings.php:507
|
1860 |
msgid "blocks"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: ../admin/settings.php:508
|
1864 |
msgid "fluids"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: ../admin/settings.php:509
|
1868 |
msgid "flash"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: ../admin/settings.php:510
|
1872 |
msgid "lines"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: ../admin/settings.php:511
|
1876 |
msgid "random"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: ../admin/settings.php:515
|
1880 |
msgid "Use slow zooming effect"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: ../admin/settings.php:519
|
1884 |
msgid "Background Color"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: ../admin/settings.php:524
|
1888 |
msgid "Texts / Buttons Color"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: ../admin/settings.php:529
|
1892 |
msgid "Rollover / Active Color"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: ../admin/settings.php:534
|
1896 |
msgid "Screen Color"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: ../admin/settings.php:539
|
1900 |
msgid "Background music (URL)"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: ../admin/settings.php:543
|
1904 |
msgid "Try XHTML validation (with CDATA)"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: ../admin/settings.php:545
|
1908 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
1909 |
msgstr ""
|
1910 |
|
2166 |
msgid "Slug(s) to set:"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: ../admin/upgrade.php:22
|
2170 |
+
msgid "Upgrade database structure..."
|
2171 |
+
msgstr ""
|
2172 |
+
|
2173 |
#: ../admin/upgrade.php:74
|
2174 |
+
#: ../admin/upgrade.php:80
|
2175 |
+
#: ../admin/upgrade.php:87
|
2176 |
+
msgid "finished"
|
2177 |
+
msgstr ""
|
2178 |
+
|
2179 |
+
#: ../admin/upgrade.php:78
|
2180 |
+
msgid "Update file structure..."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: ../admin/upgrade.php:85
|
2184 |
+
msgid "Import date and time information..."
|
2185 |
+
msgstr ""
|
2186 |
+
|
2187 |
+
#: ../admin/upgrade.php:151
|
2188 |
msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: ../admin/upgrade.php:153
|
2192 |
msgid "Rename failed"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: ../admin/upgrade.php:193
|
2196 |
+
#: ../admin/upgrade.php:213
|
2197 |
msgid "Upgrade NextGEN Gallery"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: ../admin/upgrade.php:194
|
2201 |
msgid "The script detect that you upgrade from a older version."
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: ../admin/upgrade.php:195
|
2205 |
msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: ../admin/upgrade.php:196
|
2209 |
msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: ../admin/upgrade.php:197
|
2213 |
msgid "The upgrade process may take a while, so please be patient."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: ../admin/upgrade.php:198
|
2217 |
msgid "Start upgrade now"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: ../admin/upgrade.php:215
|
2221 |
msgid "Upgrade sucessfull"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: ../admin/upgrade.php:216
|
2225 |
msgid "Continue"
|
2226 |
msgstr ""
|
2227 |
|
2346 |
msgid "Insert"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: ../lib/meta.php:87
|
2350 |
msgid " mm"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: ../lib/meta.php:93
|
2354 |
msgid " sec"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: ../lib/meta.php:371
|
2358 |
#: ../view/imagebrowser-exif.php:42
|
2359 |
msgid "Aperture"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: ../lib/meta.php:372
|
2363 |
+
#: ../lib/meta.php:397
|
2364 |
msgid "Credit"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: ../lib/meta.php:373
|
2368 |
msgid "Camera"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: ../lib/meta.php:374
|
2372 |
msgid "Caption"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: ../lib/meta.php:376
|
2376 |
msgid "Copyright"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: ../lib/meta.php:377
|
2380 |
msgid "Focal length"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: ../lib/meta.php:378
|
2384 |
msgid "ISO"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: ../lib/meta.php:379
|
2388 |
#: ../view/imagebrowser-exif.php:50
|
2389 |
msgid "Shutter speed"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: ../lib/meta.php:383
|
2393 |
msgid "Subject"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: ../lib/meta.php:384
|
2397 |
msgid "Make"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: ../lib/meta.php:385
|
2401 |
msgid "Edit Status"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: ../lib/meta.php:386
|
2405 |
msgid "Category"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: ../lib/meta.php:387
|
2409 |
msgid "Keywords"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: ../lib/meta.php:388
|
2413 |
msgid "Date Created"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: ../lib/meta.php:389
|
2417 |
msgid "Time Created"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: ../lib/meta.php:390
|
2421 |
msgid "Author Position"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: ../lib/meta.php:391
|
2425 |
msgid "City"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: ../lib/meta.php:392
|
2429 |
msgid "Location"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: ../lib/meta.php:393
|
2433 |
msgid "Province/State"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: ../lib/meta.php:394
|
2437 |
msgid "Country code"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: ../lib/meta.php:395
|
2441 |
msgid "Country"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: ../lib/meta.php:396
|
2445 |
msgid "Headline"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: ../lib/meta.php:398
|
2449 |
msgid "Source"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: ../lib/meta.php:399
|
2453 |
msgid "Copyright Notice"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: ../lib/meta.php:400
|
2457 |
msgid "Contact"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: ../lib/meta.php:401
|
2461 |
msgid "Last modified"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: ../lib/meta.php:402
|
2465 |
msgid "Program tool"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: ../lib/meta.php:403
|
2469 |
msgid "Format"
|
2470 |
msgstr ""
|
2471 |
|
lib/meta.php
CHANGED
@@ -21,14 +21,14 @@ class nggMeta{
|
|
21 |
var $iptc_array = false; // IPTC data array
|
22 |
var $xmp_array = false; // XMP data array
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
function nggMeta($image) {
|
32 |
$this->imagePath = $image;
|
33 |
|
34 |
if ( !file_exists( $this->imagePath ) )
|
@@ -42,6 +42,10 @@ class nggMeta{
|
|
42 |
if ( is_callable('exif_read_data'))
|
43 |
$this->exif_data = @exif_read_data($this->imagePath, 0, true );
|
44 |
|
|
|
|
|
|
|
|
|
45 |
// get the iptc data - should be in APP13
|
46 |
if ( is_callable('iptcparse'))
|
47 |
$this->iptc_data = @iptcparse($metadata["APP13"]);
|
21 |
var $iptc_array = false; // IPTC data array
|
22 |
var $xmp_array = false; // XMP data array
|
23 |
|
24 |
+
/**
|
25 |
+
* nggMeta::nggMeta()
|
26 |
+
*
|
27 |
+
* @param string $image path to a image
|
28 |
+
* @param bool $onlyEXIF parse only exif if needed
|
29 |
+
* @return
|
30 |
+
*/
|
31 |
+
function nggMeta($image, $onlyEXIF = false) {
|
32 |
$this->imagePath = $image;
|
33 |
|
34 |
if ( !file_exists( $this->imagePath ) )
|
42 |
if ( is_callable('exif_read_data'))
|
43 |
$this->exif_data = @exif_read_data($this->imagePath, 0, true );
|
44 |
|
45 |
+
// stop here if we didn't need other meta data
|
46 |
+
if ($onlyEXIF)
|
47 |
+
return true;
|
48 |
+
|
49 |
// get the iptc data - should be in APP13
|
50 |
if ( is_callable('iptcparse'))
|
51 |
$this->iptc_data = @iptcparse($metadata["APP13"]);
|
nggallery.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: NextGEN Gallery
|
|
4 |
Plugin URI: http://alexrabe.boelinger.com/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the WEB2.0(beta).
|
6 |
Author: NextGEN DEV-Team
|
7 |
-
Version: 1.0.
|
8 |
|
9 |
Author URI: http://alexrabe.boelinger.com/
|
10 |
|
@@ -44,7 +44,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
44 |
if (!class_exists('nggLoader')) {
|
45 |
class nggLoader {
|
46 |
|
47 |
-
var $version = '1.0.
|
48 |
var $dbversion = '0.9.7';
|
49 |
var $minium_WP = '2.7';
|
50 |
var $minium_WPMU = '2.7';
|
@@ -73,8 +73,9 @@ class nggLoader {
|
|
73 |
register_deactivation_hook( dirname(__FILE__) . '/nggallery.php', array(&$this, 'deactivate') );
|
74 |
|
75 |
// Register a uninstall hook to atumatic remove all tables & option
|
76 |
-
|
77 |
-
|
|
|
78 |
// Start this plugin once all other plugins are fully loaded
|
79 |
add_action( 'plugins_loaded', array(&$this, 'start_plugin') );
|
80 |
|
@@ -341,4 +342,4 @@ class nggLoader {
|
|
341 |
if ( class_exists(nggRewrite) )
|
342 |
$nggRewrite = new nggRewrite();
|
343 |
}
|
344 |
-
?>
|
4 |
Plugin URI: http://alexrabe.boelinger.com/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the WEB2.0(beta).
|
6 |
Author: NextGEN DEV-Team
|
7 |
+
Version: 1.0.1
|
8 |
|
9 |
Author URI: http://alexrabe.boelinger.com/
|
10 |
|
44 |
if (!class_exists('nggLoader')) {
|
45 |
class nggLoader {
|
46 |
|
47 |
+
var $version = '1.0.1';
|
48 |
var $dbversion = '0.9.7';
|
49 |
var $minium_WP = '2.7';
|
50 |
var $minium_WPMU = '2.7';
|
73 |
register_deactivation_hook( dirname(__FILE__) . '/nggallery.php', array(&$this, 'deactivate') );
|
74 |
|
75 |
// Register a uninstall hook to atumatic remove all tables & option
|
76 |
+
if ( function_exists('register_uninstall_hook') )
|
77 |
+
register_uninstall_hook( dirname(__FILE__) . '/nggallery.php', array('nggLoader', 'uninstall') );
|
78 |
+
|
79 |
// Start this plugin once all other plugins are fully loaded
|
80 |
add_action( 'plugins_loaded', array(&$this, 'start_plugin') );
|
81 |
|
342 |
if ( class_exists(nggRewrite) )
|
343 |
$nggRewrite = new nggRewrite();
|
344 |
}
|
345 |
+
?>
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: Alex Rabe
|
3 |
Donate link: http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/
|
4 |
Tags: photos, flash, slideshow, images, gallery, media, admin, post, photo-albums, pictures, widgets, photo, picture
|
5 |
-
Requires at least: 2.7
|
6 |
-
Tested up to: 2.7
|
7 |
Stable tag: trunk
|
8 |
|
9 |
NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with a Flash slideshow option.
|
@@ -13,7 +13,7 @@ NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with a F
|
|
13 |
My last and hopefully best plugin for WordPress is a new Gallery plugin called NextGEN Gallery . It's named als "NextGeneration" according to the the development of the game consoles . More over it should indicate that I (try) to use all new possibilities of the great JQuery and the so called Web 2.0.
|
14 |
Before I start writing the plugin I study all image and gallery plugins for WordPress, I figure out that some of them are really good and well designed, but I missed a simple and easy administration back end to handle multiple galleries.
|
15 |
|
16 |
-
= NEW in VERSION 1.0
|
17 |
|
18 |
* Templates : You can add custom templates for your theme. See here for some example
|
19 |
* Media RSS feed : Add the Cooliris Effect to your gallery
|
@@ -135,5 +135,4 @@ Example : http://nextgen.boelinger.com/albumtags/
|
|
135 |
|
136 |
**A further FAQ you can found here :** http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/faq/
|
137 |
|
138 |
-
**And at least request your question here :** http://alexrabe.boelinger.com/forums/
|
139 |
-
|
2 |
Contributors: Alex Rabe
|
3 |
Donate link: http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/
|
4 |
Tags: photos, flash, slideshow, images, gallery, media, admin, post, photo-albums, pictures, widgets, photo, picture
|
5 |
+
Requires at least: 2.7
|
6 |
+
Tested up to: 2.7
|
7 |
Stable tag: trunk
|
8 |
|
9 |
NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with a Flash slideshow option.
|
13 |
My last and hopefully best plugin for WordPress is a new Gallery plugin called NextGEN Gallery . It's named als "NextGeneration" according to the the development of the game consoles . More over it should indicate that I (try) to use all new possibilities of the great JQuery and the so called Web 2.0.
|
14 |
Before I start writing the plugin I study all image and gallery plugins for WordPress, I figure out that some of them are really good and well designed, but I missed a simple and easy administration back end to handle multiple galleries.
|
15 |
|
16 |
+
= NEW in VERSION 1.0 for WordPress 2.7 =
|
17 |
|
18 |
* Templates : You can add custom templates for your theme. See here for some example
|
19 |
* Media RSS feed : Add the Cooliris Effect to your gallery
|
135 |
|
136 |
**A further FAQ you can found here :** http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/faq/
|
137 |
|
138 |
+
**And at least request your question here :** http://alexrabe.boelinger.com/forums/
|
|