Version Description
- fixed 'Use images currently in Media Library' option
Download this release
Release Info
Developer | soflyy |
Plugin | Import any XML or CSV File to WordPress |
Version | 3.3.5 |
Comparing to | |
See all releases |
Code changes from version 3.3.4 to 3.3.5
- classes/PHPExcel/CachedObjectStorage/Memory.php +125 -125
- classes/PHPExcel/CachedObjectStorage/SQLite.php +306 -306
- i18n/languages/wp_all_import_plugin-de_CH.mo +0 -0
- i18n/languages/wp_all_import_plugin-de_CH.po +4861 -0
- models/import/record.php +2 -2
- plugin.php +5 -2
- readme.txt +6 -3
classes/PHPExcel/CachedObjectStorage/Memory.php
CHANGED
@@ -1,125 +1,125 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* PHPExcel
|
4 |
-
*
|
5 |
-
* Copyright (c) 2006 - 2014 PHPExcel
|
6 |
-
*
|
7 |
-
* This library is free software; you can redistribute it and/or
|
8 |
-
* modify it under the terms of the GNU Lesser General Public
|
9 |
-
* License as published by the Free Software Foundation; either
|
10 |
-
* version 2.1 of the License, or (at your option) any later version.
|
11 |
-
*
|
12 |
-
* This library is distributed in the hope that it will be useful,
|
13 |
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 |
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15 |
-
* Lesser General Public License for more details.
|
16 |
-
*
|
17 |
-
* You should have received a copy of the GNU Lesser General Public
|
18 |
-
* License along with this library; if not, write to the Free Software
|
19 |
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 |
-
*
|
21 |
-
* @category PHPExcel
|
22 |
-
* @package PHPExcel_CachedObjectStorage
|
23 |
-
* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
|
24 |
-
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
25 |
-
* @version ##VERSION##, ##DATE##
|
26 |
-
*/
|
27 |
-
|
28 |
-
|
29 |
-
/**
|
30 |
-
* PHPExcel_CachedObjectStorage_Memory
|
31 |
-
*
|
32 |
-
* @category PHPExcel
|
33 |
-
* @package PHPExcel_CachedObjectStorage
|
34 |
-
* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
|
35 |
-
*/
|
36 |
-
class PHPExcel_CachedObjectStorage_Memory extends PHPExcel_CachedObjectStorage_CacheBase implements PHPExcel_CachedObjectStorage_ICache {
|
37 |
-
|
38 |
-
/**
|
39 |
-
* Dummy method callable from CacheBase, but unused by Memory cache
|
40 |
-
*
|
41 |
-
* @return void
|
42 |
-
*/
|
43 |
-
protected function _storeData() {
|
44 |
-
} // function _storeData()
|
45 |
-
|
46 |
-
/**
|
47 |
-
* Add or Update a cell in cache identified by coordinate address
|
48 |
-
*
|
49 |
-
* @param string $pCoord Coordinate address of the cell to update
|
50 |
-
* @param PHPExcel_Cell $cell Cell to update
|
51 |
-
* @return PHPExcel_Cell
|
52 |
-
* @throws PHPExcel_Exception
|
53 |
-
*/
|
54 |
-
public function addCacheData($pCoord, PHPExcel_Cell $cell) {
|
55 |
-
$this->_cellCache[$pCoord] = $cell;
|
56 |
-
|
57 |
-
// Set current entry to the new/updated entry
|
58 |
-
$this->_currentObjectID = $pCoord;
|
59 |
-
|
60 |
-
return $cell;
|
61 |
-
} // function addCacheData()
|
62 |
-
|
63 |
-
|
64 |
-
/**
|
65 |
-
* Get cell at a specific coordinate
|
66 |
-
*
|
67 |
-
* @param string $pCoord Coordinate of the cell
|
68 |
-
* @throws PHPExcel_Exception
|
69 |
-
* @return PHPExcel_Cell Cell that was found, or null if not found
|
70 |
-
*/
|
71 |
-
public function getCacheData($pCoord) {
|
72 |
-
// Check if the entry that has been requested actually exists
|
73 |
-
if (!isset($this->_cellCache[$pCoord])) {
|
74 |
-
$this->_currentObjectID = NULL;
|
75 |
-
// Return null if requested entry doesn't exist in cache
|
76 |
-
return null;
|
77 |
-
}
|
78 |
-
|
79 |
-
// Set current entry to the requested entry
|
80 |
-
$this->_currentObjectID = $pCoord;
|
81 |
-
|
82 |
-
// Return requested entry
|
83 |
-
return $this->_cellCache[$pCoord];
|
84 |
-
} // function getCacheData()
|
85 |
-
|
86 |
-
|
87 |
-
/**
|
88 |
-
* Clone the cell collection
|
89 |
-
*
|
90 |
-
* @param PHPExcel_Worksheet $parent The new worksheet
|
91 |
-
* @return void
|
92 |
-
*/
|
93 |
-
public function copyCellCollection(PHPExcel_Worksheet $parent) {
|
94 |
-
parent::copyCellCollection($parent);
|
95 |
-
|
96 |
-
$newCollection = array();
|
97 |
-
foreach($this->_cellCache as $k => &$cell) {
|
98 |
-
$newCollection[$k] = clone $cell;
|
99 |
-
$newCollection[$k]->attach($this);
|
100 |
-
}
|
101 |
-
|
102 |
-
$this->_cellCache = $newCollection;
|
103 |
-
}
|
104 |
-
|
105 |
-
|
106 |
-
/**
|
107 |
-
* Clear the cell collection and disconnect from our parent
|
108 |
-
*
|
109 |
-
* @return void
|
110 |
-
*/
|
111 |
-
public function unsetWorksheetCells() {
|
112 |
-
// Because cells are all stored as intact objects in memory, we need to detach each one from the parent
|
113 |
-
foreach($this->_cellCache as $k => &$cell) {
|
114 |
-
$cell->detach();
|
115 |
-
$this->_cellCache[$k] = null;
|
116 |
-
}
|
117 |
-
unset($cell);
|
118 |
-
|
119 |
-
$this->_cellCache = array();
|
120 |
-
|
121 |
-
// detach ourself from the worksheet, so that it can then delete this object successfully
|
122 |
-
$this->_parent = null;
|
123 |
-
} // function unsetWorksheetCells()
|
124 |
-
|
125 |
-
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* PHPExcel
|
4 |
+
*
|
5 |
+
* Copyright (c) 2006 - 2014 PHPExcel
|
6 |
+
*
|
7 |
+
* This library is free software; you can redistribute it and/or
|
8 |
+
* modify it under the terms of the GNU Lesser General Public
|
9 |
+
* License as published by the Free Software Foundation; either
|
10 |
+
* version 2.1 of the License, or (at your option) any later version.
|
11 |
+
*
|
12 |
+
* This library is distributed in the hope that it will be useful,
|
13 |
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 |
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15 |
+
* Lesser General Public License for more details.
|
16 |
+
*
|
17 |
+
* You should have received a copy of the GNU Lesser General Public
|
18 |
+
* License along with this library; if not, write to the Free Software
|
19 |
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 |
+
*
|
21 |
+
* @category PHPExcel
|
22 |
+
* @package PHPExcel_CachedObjectStorage
|
23 |
+
* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
|
24 |
+
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
25 |
+
* @version ##VERSION##, ##DATE##
|
26 |
+
*/
|
27 |
+
|
28 |
+
|
29 |
+
/**
|
30 |
+
* PHPExcel_CachedObjectStorage_Memory
|
31 |
+
*
|
32 |
+
* @category PHPExcel
|
33 |
+
* @package PHPExcel_CachedObjectStorage
|
34 |
+
* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
|
35 |
+
*/
|
36 |
+
class PHPExcel_CachedObjectStorage_Memory extends PHPExcel_CachedObjectStorage_CacheBase implements PHPExcel_CachedObjectStorage_ICache {
|
37 |
+
|
38 |
+
/**
|
39 |
+
* Dummy method callable from CacheBase, but unused by Memory cache
|
40 |
+
*
|
41 |
+
* @return void
|
42 |
+
*/
|
43 |
+
protected function _storeData() {
|
44 |
+
} // function _storeData()
|
45 |
+
|
46 |
+
/**
|
47 |
+
* Add or Update a cell in cache identified by coordinate address
|
48 |
+
*
|
49 |
+
* @param string $pCoord Coordinate address of the cell to update
|
50 |
+
* @param PHPExcel_Cell $cell Cell to update
|
51 |
+
* @return PHPExcel_Cell
|
52 |
+
* @throws PHPExcel_Exception
|
53 |
+
*/
|
54 |
+
public function addCacheData($pCoord, PHPExcel_Cell $cell) {
|
55 |
+
$this->_cellCache[$pCoord] = $cell;
|
56 |
+
|
57 |
+
// Set current entry to the new/updated entry
|
58 |
+
$this->_currentObjectID = $pCoord;
|
59 |
+
|
60 |
+
return $cell;
|
61 |
+
} // function addCacheData()
|
62 |
+
|
63 |
+
|
64 |
+
/**
|
65 |
+
* Get cell at a specific coordinate
|
66 |
+
*
|
67 |
+
* @param string $pCoord Coordinate of the cell
|
68 |
+
* @throws PHPExcel_Exception
|
69 |
+
* @return PHPExcel_Cell Cell that was found, or null if not found
|
70 |
+
*/
|
71 |
+
public function getCacheData($pCoord) {
|
72 |
+
// Check if the entry that has been requested actually exists
|
73 |
+
if (!isset($this->_cellCache[$pCoord])) {
|
74 |
+
$this->_currentObjectID = NULL;
|
75 |
+
// Return null if requested entry doesn't exist in cache
|
76 |
+
return null;
|
77 |
+
}
|
78 |
+
|
79 |
+
// Set current entry to the requested entry
|
80 |
+
$this->_currentObjectID = $pCoord;
|
81 |
+
|
82 |
+
// Return requested entry
|
83 |
+
return $this->_cellCache[$pCoord];
|
84 |
+
} // function getCacheData()
|
85 |
+
|
86 |
+
|
87 |
+
/**
|
88 |
+
* Clone the cell collection
|
89 |
+
*
|
90 |
+
* @param PHPExcel_Worksheet $parent The new worksheet
|
91 |
+
* @return void
|
92 |
+
*/
|
93 |
+
public function copyCellCollection(PHPExcel_Worksheet $parent) {
|
94 |
+
parent::copyCellCollection($parent);
|
95 |
+
|
96 |
+
$newCollection = array();
|
97 |
+
foreach($this->_cellCache as $k => &$cell) {
|
98 |
+
$newCollection[$k] = clone $cell;
|
99 |
+
$newCollection[$k]->attach($this);
|
100 |
+
}
|
101 |
+
|
102 |
+
$this->_cellCache = $newCollection;
|
103 |
+
}
|
104 |
+
|
105 |
+
|
106 |
+
/**
|
107 |
+
* Clear the cell collection and disconnect from our parent
|
108 |
+
*
|
109 |
+
* @return void
|
110 |
+
*/
|
111 |
+
public function unsetWorksheetCells() {
|
112 |
+
// Because cells are all stored as intact objects in memory, we need to detach each one from the parent
|
113 |
+
foreach($this->_cellCache as $k => &$cell) {
|
114 |
+
$cell->detach();
|
115 |
+
$this->_cellCache[$k] = null;
|
116 |
+
}
|
117 |
+
unset($cell);
|
118 |
+
|
119 |
+
$this->_cellCache = array();
|
120 |
+
|
121 |
+
// detach ourself from the worksheet, so that it can then delete this object successfully
|
122 |
+
$this->_parent = null;
|
123 |
+
} // function unsetWorksheetCells()
|
124 |
+
|
125 |
+
}
|
classes/PHPExcel/CachedObjectStorage/SQLite.php
CHANGED
@@ -1,306 +1,306 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* PHPExcel
|
4 |
-
*
|
5 |
-
* Copyright (c) 2006 - 2014 PHPExcel
|
6 |
-
*
|
7 |
-
* This library is free software; you can redistribute it and/or
|
8 |
-
* modify it under the terms of the GNU Lesser General Public
|
9 |
-
* License as published by the Free Software Foundation; either
|
10 |
-
* version 2.1 of the License, or (at your option) any later version.
|
11 |
-
*
|
12 |
-
* This library is distributed in the hope that it will be useful,
|
13 |
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 |
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15 |
-
* Lesser General Public License for more details.
|
16 |
-
*
|
17 |
-
* You should have received a copy of the GNU Lesser General Public
|
18 |
-
* License along with this library; if not, write to the Free Software
|
19 |
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 |
-
*
|
21 |
-
* @category PHPExcel
|
22 |
-
* @package PHPExcel_CachedObjectStorage
|
23 |
-
* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
|
24 |
-
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
25 |
-
* @version ##VERSION##, ##DATE##
|
26 |
-
*/
|
27 |
-
|
28 |
-
|
29 |
-
/**
|
30 |
-
* PHPExcel_CachedObjectStorage_SQLite
|
31 |
-
*
|
32 |
-
* @category PHPExcel
|
33 |
-
* @package PHPExcel_CachedObjectStorage
|
34 |
-
* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
|
35 |
-
*/
|
36 |
-
class PHPExcel_CachedObjectStorage_SQLite extends PHPExcel_CachedObjectStorage_CacheBase implements PHPExcel_CachedObjectStorage_ICache {
|
37 |
-
|
38 |
-
/**
|
39 |
-
* Database table name
|
40 |
-
*
|
41 |
-
* @var string
|
42 |
-
*/
|
43 |
-
private $_TableName = null;
|
44 |
-
|
45 |
-
/**
|
46 |
-
* Database handle
|
47 |
-
*
|
48 |
-
* @var resource
|
49 |
-
*/
|
50 |
-
private $_DBHandle = null;
|
51 |
-
|
52 |
-
/**
|
53 |
-
* Store cell data in cache for the current cell object if it's "dirty",
|
54 |
-
* and the 'nullify' the current cell object
|
55 |
-
*
|
56 |
-
* @return void
|
57 |
-
* @throws PHPExcel_Exception
|
58 |
-
*/
|
59 |
-
protected function _storeData() {
|
60 |
-
if ($this->_currentCellIsDirty && !empty($this->_currentObjectID)) {
|
61 |
-
$this->_currentObject->detach();
|
62 |
-
|
63 |
-
if (!$this->_DBHandle->queryExec("INSERT OR REPLACE INTO kvp_".$this->_TableName." VALUES('".$this->_currentObjectID."','".sqlite_escape_string(serialize($this->_currentObject))."')"))
|
64 |
-
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
65 |
-
$this->_currentCellIsDirty = false;
|
66 |
-
}
|
67 |
-
$this->_currentObjectID = $this->_currentObject = null;
|
68 |
-
} // function _storeData()
|
69 |
-
|
70 |
-
|
71 |
-
/**
|
72 |
-
* Add or Update a cell in cache identified by coordinate address
|
73 |
-
*
|
74 |
-
* @param string $pCoord Coordinate address of the cell to update
|
75 |
-
* @param PHPExcel_Cell $cell Cell to update
|
76 |
-
* @return PHPExcel_Cell
|
77 |
-
* @throws PHPExcel_Exception
|
78 |
-
*/
|
79 |
-
public function addCacheData($pCoord, PHPExcel_Cell $cell) {
|
80 |
-
if (($pCoord !== $this->_currentObjectID) && ($this->_currentObjectID !== null)) {
|
81 |
-
$this->_storeData();
|
82 |
-
}
|
83 |
-
|
84 |
-
$this->_currentObjectID = $pCoord;
|
85 |
-
$this->_currentObject = $cell;
|
86 |
-
$this->_currentCellIsDirty = true;
|
87 |
-
|
88 |
-
return $cell;
|
89 |
-
} // function addCacheData()
|
90 |
-
|
91 |
-
|
92 |
-
/**
|
93 |
-
* Get cell at a specific coordinate
|
94 |
-
*
|
95 |
-
* @param string $pCoord Coordinate of the cell
|
96 |
-
* @throws PHPExcel_Exception
|
97 |
-
* @return PHPExcel_Cell Cell that was found, or null if not found
|
98 |
-
*/
|
99 |
-
public function getCacheData($pCoord) {
|
100 |
-
if ($pCoord === $this->_currentObjectID) {
|
101 |
-
return $this->_currentObject;
|
102 |
-
}
|
103 |
-
$this->_storeData();
|
104 |
-
|
105 |
-
$query = "SELECT value FROM kvp_".$this->_TableName." WHERE id='".$pCoord."'";
|
106 |
-
$cellResultSet = $this->_DBHandle->query($query,SQLITE_ASSOC);
|
107 |
-
if ($cellResultSet === false) {
|
108 |
-
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
109 |
-
} elseif ($cellResultSet->numRows() == 0) {
|
110 |
-
// Return null if requested entry doesn't exist in cache
|
111 |
-
return null;
|
112 |
-
}
|
113 |
-
|
114 |
-
// Set current entry to the requested entry
|
115 |
-
$this->_currentObjectID = $pCoord;
|
116 |
-
|
117 |
-
$cellResult = $cellResultSet->fetchSingle();
|
118 |
-
$this->_currentObject = unserialize($cellResult);
|
119 |
-
// Re-attach this as the cell's parent
|
120 |
-
$this->_currentObject->attach($this);
|
121 |
-
|
122 |
-
// Return requested entry
|
123 |
-
return $this->_currentObject;
|
124 |
-
} // function getCacheData()
|
125 |
-
|
126 |
-
|
127 |
-
/**
|
128 |
-
* Is a value set for an indexed cell?
|
129 |
-
*
|
130 |
-
* @param string $pCoord Coordinate address of the cell to check
|
131 |
-
* @return boolean
|
132 |
-
*/
|
133 |
-
public function isDataSet($pCoord) {
|
134 |
-
if ($pCoord === $this->_currentObjectID) {
|
135 |
-
return true;
|
136 |
-
}
|
137 |
-
|
138 |
-
// Check if the requested entry exists in the cache
|
139 |
-
$query = "SELECT id FROM kvp_".$this->_TableName." WHERE id='".$pCoord."'";
|
140 |
-
$cellResultSet = $this->_DBHandle->query($query,SQLITE_ASSOC);
|
141 |
-
if ($cellResultSet === false) {
|
142 |
-
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
143 |
-
} elseif ($cellResultSet->numRows() == 0) {
|
144 |
-
// Return null if requested entry doesn't exist in cache
|
145 |
-
return false;
|
146 |
-
}
|
147 |
-
return true;
|
148 |
-
} // function isDataSet()
|
149 |
-
|
150 |
-
|
151 |
-
/**
|
152 |
-
* Delete a cell in cache identified by coordinate address
|
153 |
-
*
|
154 |
-
* @param string $pCoord Coordinate address of the cell to delete
|
155 |
-
* @throws PHPExcel_Exception
|
156 |
-
*/
|
157 |
-
public function deleteCacheData($pCoord) {
|
158 |
-
if ($pCoord === $this->_currentObjectID) {
|
159 |
-
$this->_currentObject->detach();
|
160 |
-
$this->_currentObjectID = $this->_currentObject = null;
|
161 |
-
}
|
162 |
-
|
163 |
-
// Check if the requested entry exists in the cache
|
164 |
-
$query = "DELETE FROM kvp_".$this->_TableName." WHERE id='".$pCoord."'";
|
165 |
-
if (!$this->_DBHandle->queryExec($query))
|
166 |
-
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
167 |
-
|
168 |
-
$this->_currentCellIsDirty = false;
|
169 |
-
} // function deleteCacheData()
|
170 |
-
|
171 |
-
|
172 |
-
/**
|
173 |
-
* Move a cell object from one address to another
|
174 |
-
*
|
175 |
-
* @param string $fromAddress Current address of the cell to move
|
176 |
-
* @param string $toAddress Destination address of the cell to move
|
177 |
-
* @return boolean
|
178 |
-
*/
|
179 |
-
public function moveCell($fromAddress, $toAddress) {
|
180 |
-
if ($fromAddress === $this->_currentObjectID) {
|
181 |
-
$this->_currentObjectID = $toAddress;
|
182 |
-
}
|
183 |
-
|
184 |
-
$query = "DELETE FROM kvp_".$this->_TableName." WHERE id='".$toAddress."'";
|
185 |
-
$result = $this->_DBHandle->exec($query);
|
186 |
-
if ($result === false)
|
187 |
-
throw new PHPExcel_Exception($this->_DBHandle->lastErrorMsg());
|
188 |
-
|
189 |
-
$query = "UPDATE kvp_".$this->_TableName." SET id='".$toAddress."' WHERE id='".$fromAddress."'";
|
190 |
-
$result = $this->_DBHandle->exec($query);
|
191 |
-
if ($result === false)
|
192 |
-
throw new PHPExcel_Exception($this->_DBHandle->lastErrorMsg());
|
193 |
-
|
194 |
-
return TRUE;
|
195 |
-
} // function moveCell()
|
196 |
-
|
197 |
-
|
198 |
-
/**
|
199 |
-
* Get a list of all cell addresses currently held in cache
|
200 |
-
*
|
201 |
-
* @return string[]
|
202 |
-
*/
|
203 |
-
public function getCellList() {
|
204 |
-
if ($this->_currentObjectID !== null) {
|
205 |
-
$this->_storeData();
|
206 |
-
}
|
207 |
-
|
208 |
-
$query = "SELECT id FROM kvp_".$this->_TableName;
|
209 |
-
$cellIdsResult = $this->_DBHandle->unbufferedQuery($query,SQLITE_ASSOC);
|
210 |
-
if ($cellIdsResult === false)
|
211 |
-
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
212 |
-
|
213 |
-
$cellKeys = array();
|
214 |
-
foreach($cellIdsResult as $row) {
|
215 |
-
$cellKeys[] = $row['id'];
|
216 |
-
}
|
217 |
-
|
218 |
-
return $cellKeys;
|
219 |
-
} // function getCellList()
|
220 |
-
|
221 |
-
|
222 |
-
/**
|
223 |
-
* Clone the cell collection
|
224 |
-
*
|
225 |
-
* @param PHPExcel_Worksheet $parent The new worksheet
|
226 |
-
* @return void
|
227 |
-
*/
|
228 |
-
public function copyCellCollection(PHPExcel_Worksheet $parent) {
|
229 |
-
$this->_currentCellIsDirty;
|
230 |
-
$this->_storeData();
|
231 |
-
|
232 |
-
// Get a new id for the new table name
|
233 |
-
$tableName = str_replace('.','_',$this->_getUniqueID());
|
234 |
-
if (!$this->_DBHandle->queryExec('CREATE TABLE kvp_'.$tableName.' (id VARCHAR(12) PRIMARY KEY, value BLOB)
|
235 |
-
AS SELECT * FROM kvp_'.$this->_TableName))
|
236 |
-
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
237 |
-
|
238 |
-
// Copy the existing cell cache file
|
239 |
-
$this->_TableName = $tableName;
|
240 |
-
} // function copyCellCollection()
|
241 |
-
|
242 |
-
|
243 |
-
/**
|
244 |
-
* Clear the cell collection and disconnect from our parent
|
245 |
-
*
|
246 |
-
* @return void
|
247 |
-
*/
|
248 |
-
public function unsetWorksheetCells() {
|
249 |
-
if(!is_null($this->_currentObject)) {
|
250 |
-
$this->_currentObject->detach();
|
251 |
-
$this->_currentObject = $this->_currentObjectID = null;
|
252 |
-
}
|
253 |
-
// detach ourself from the worksheet, so that it can then delete this object successfully
|
254 |
-
$this->_parent = null;
|
255 |
-
|
256 |
-
// Close down the temporary cache file
|
257 |
-
$this->__destruct();
|
258 |
-
} // function unsetWorksheetCells()
|
259 |
-
|
260 |
-
|
261 |
-
/**
|
262 |
-
* Initialise this new cell collection
|
263 |
-
*
|
264 |
-
* @param PHPExcel_Worksheet $parent The worksheet for this cell collection
|
265 |
-
*/
|
266 |
-
public function __construct(PHPExcel_Worksheet $parent) {
|
267 |
-
parent::__construct($parent);
|
268 |
-
if (is_null($this->_DBHandle)) {
|
269 |
-
$this->_TableName = str_replace('.','_',$this->_getUniqueID());
|
270 |
-
$_DBName = ':memory:';
|
271 |
-
|
272 |
-
$this->_DBHandle = new SQLiteDatabase($_DBName);
|
273 |
-
if ($this->_DBHandle === false)
|
274 |
-
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
275 |
-
if (!$this->_DBHandle->queryExec('CREATE TABLE kvp_'.$this->_TableName.' (id VARCHAR(12) PRIMARY KEY, value BLOB)'))
|
276 |
-
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
277 |
-
}
|
278 |
-
} // function __construct()
|
279 |
-
|
280 |
-
|
281 |
-
/**
|
282 |
-
* Destroy this cell collection
|
283 |
-
*/
|
284 |
-
public function __destruct() {
|
285 |
-
if (!is_null($this->_DBHandle)) {
|
286 |
-
$this->_DBHandle->queryExec('DROP TABLE kvp_'.$this->_TableName);
|
287 |
-
}
|
288 |
-
$this->_DBHandle = null;
|
289 |
-
} // function __destruct()
|
290 |
-
|
291 |
-
|
292 |
-
/**
|
293 |
-
* Identify whether the caching method is currently available
|
294 |
-
* Some methods are dependent on the availability of certain extensions being enabled in the PHP build
|
295 |
-
*
|
296 |
-
* @return boolean
|
297 |
-
*/
|
298 |
-
public static function cacheMethodIsAvailable() {
|
299 |
-
if (!function_exists('sqlite_open')) {
|
300 |
-
return false;
|
301 |
-
}
|
302 |
-
|
303 |
-
return true;
|
304 |
-
}
|
305 |
-
|
306 |
-
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* PHPExcel
|
4 |
+
*
|
5 |
+
* Copyright (c) 2006 - 2014 PHPExcel
|
6 |
+
*
|
7 |
+
* This library is free software; you can redistribute it and/or
|
8 |
+
* modify it under the terms of the GNU Lesser General Public
|
9 |
+
* License as published by the Free Software Foundation; either
|
10 |
+
* version 2.1 of the License, or (at your option) any later version.
|
11 |
+
*
|
12 |
+
* This library is distributed in the hope that it will be useful,
|
13 |
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 |
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15 |
+
* Lesser General Public License for more details.
|
16 |
+
*
|
17 |
+
* You should have received a copy of the GNU Lesser General Public
|
18 |
+
* License along with this library; if not, write to the Free Software
|
19 |
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 |
+
*
|
21 |
+
* @category PHPExcel
|
22 |
+
* @package PHPExcel_CachedObjectStorage
|
23 |
+
* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
|
24 |
+
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
25 |
+
* @version ##VERSION##, ##DATE##
|
26 |
+
*/
|
27 |
+
|
28 |
+
|
29 |
+
/**
|
30 |
+
* PHPExcel_CachedObjectStorage_SQLite
|
31 |
+
*
|
32 |
+
* @category PHPExcel
|
33 |
+
* @package PHPExcel_CachedObjectStorage
|
34 |
+
* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
|
35 |
+
*/
|
36 |
+
class PHPExcel_CachedObjectStorage_SQLite extends PHPExcel_CachedObjectStorage_CacheBase implements PHPExcel_CachedObjectStorage_ICache {
|
37 |
+
|
38 |
+
/**
|
39 |
+
* Database table name
|
40 |
+
*
|
41 |
+
* @var string
|
42 |
+
*/
|
43 |
+
private $_TableName = null;
|
44 |
+
|
45 |
+
/**
|
46 |
+
* Database handle
|
47 |
+
*
|
48 |
+
* @var resource
|
49 |
+
*/
|
50 |
+
private $_DBHandle = null;
|
51 |
+
|
52 |
+
/**
|
53 |
+
* Store cell data in cache for the current cell object if it's "dirty",
|
54 |
+
* and the 'nullify' the current cell object
|
55 |
+
*
|
56 |
+
* @return void
|
57 |
+
* @throws PHPExcel_Exception
|
58 |
+
*/
|
59 |
+
protected function _storeData() {
|
60 |
+
if ($this->_currentCellIsDirty && !empty($this->_currentObjectID)) {
|
61 |
+
$this->_currentObject->detach();
|
62 |
+
|
63 |
+
if (!$this->_DBHandle->queryExec("INSERT OR REPLACE INTO kvp_".$this->_TableName." VALUES('".$this->_currentObjectID."','".sqlite_escape_string(serialize($this->_currentObject))."')"))
|
64 |
+
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
65 |
+
$this->_currentCellIsDirty = false;
|
66 |
+
}
|
67 |
+
$this->_currentObjectID = $this->_currentObject = null;
|
68 |
+
} // function _storeData()
|
69 |
+
|
70 |
+
|
71 |
+
/**
|
72 |
+
* Add or Update a cell in cache identified by coordinate address
|
73 |
+
*
|
74 |
+
* @param string $pCoord Coordinate address of the cell to update
|
75 |
+
* @param PHPExcel_Cell $cell Cell to update
|
76 |
+
* @return PHPExcel_Cell
|
77 |
+
* @throws PHPExcel_Exception
|
78 |
+
*/
|
79 |
+
public function addCacheData($pCoord, PHPExcel_Cell $cell) {
|
80 |
+
if (($pCoord !== $this->_currentObjectID) && ($this->_currentObjectID !== null)) {
|
81 |
+
$this->_storeData();
|
82 |
+
}
|
83 |
+
|
84 |
+
$this->_currentObjectID = $pCoord;
|
85 |
+
$this->_currentObject = $cell;
|
86 |
+
$this->_currentCellIsDirty = true;
|
87 |
+
|
88 |
+
return $cell;
|
89 |
+
} // function addCacheData()
|
90 |
+
|
91 |
+
|
92 |
+
/**
|
93 |
+
* Get cell at a specific coordinate
|
94 |
+
*
|
95 |
+
* @param string $pCoord Coordinate of the cell
|
96 |
+
* @throws PHPExcel_Exception
|
97 |
+
* @return PHPExcel_Cell Cell that was found, or null if not found
|
98 |
+
*/
|
99 |
+
public function getCacheData($pCoord) {
|
100 |
+
if ($pCoord === $this->_currentObjectID) {
|
101 |
+
return $this->_currentObject;
|
102 |
+
}
|
103 |
+
$this->_storeData();
|
104 |
+
|
105 |
+
$query = "SELECT value FROM kvp_".$this->_TableName." WHERE id='".$pCoord."'";
|
106 |
+
$cellResultSet = $this->_DBHandle->query($query,SQLITE_ASSOC);
|
107 |
+
if ($cellResultSet === false) {
|
108 |
+
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
109 |
+
} elseif ($cellResultSet->numRows() == 0) {
|
110 |
+
// Return null if requested entry doesn't exist in cache
|
111 |
+
return null;
|
112 |
+
}
|
113 |
+
|
114 |
+
// Set current entry to the requested entry
|
115 |
+
$this->_currentObjectID = $pCoord;
|
116 |
+
|
117 |
+
$cellResult = $cellResultSet->fetchSingle();
|
118 |
+
$this->_currentObject = unserialize($cellResult);
|
119 |
+
// Re-attach this as the cell's parent
|
120 |
+
$this->_currentObject->attach($this);
|
121 |
+
|
122 |
+
// Return requested entry
|
123 |
+
return $this->_currentObject;
|
124 |
+
} // function getCacheData()
|
125 |
+
|
126 |
+
|
127 |
+
/**
|
128 |
+
* Is a value set for an indexed cell?
|
129 |
+
*
|
130 |
+
* @param string $pCoord Coordinate address of the cell to check
|
131 |
+
* @return boolean
|
132 |
+
*/
|
133 |
+
public function isDataSet($pCoord) {
|
134 |
+
if ($pCoord === $this->_currentObjectID) {
|
135 |
+
return true;
|
136 |
+
}
|
137 |
+
|
138 |
+
// Check if the requested entry exists in the cache
|
139 |
+
$query = "SELECT id FROM kvp_".$this->_TableName." WHERE id='".$pCoord."'";
|
140 |
+
$cellResultSet = $this->_DBHandle->query($query,SQLITE_ASSOC);
|
141 |
+
if ($cellResultSet === false) {
|
142 |
+
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
143 |
+
} elseif ($cellResultSet->numRows() == 0) {
|
144 |
+
// Return null if requested entry doesn't exist in cache
|
145 |
+
return false;
|
146 |
+
}
|
147 |
+
return true;
|
148 |
+
} // function isDataSet()
|
149 |
+
|
150 |
+
|
151 |
+
/**
|
152 |
+
* Delete a cell in cache identified by coordinate address
|
153 |
+
*
|
154 |
+
* @param string $pCoord Coordinate address of the cell to delete
|
155 |
+
* @throws PHPExcel_Exception
|
156 |
+
*/
|
157 |
+
public function deleteCacheData($pCoord) {
|
158 |
+
if ($pCoord === $this->_currentObjectID) {
|
159 |
+
$this->_currentObject->detach();
|
160 |
+
$this->_currentObjectID = $this->_currentObject = null;
|
161 |
+
}
|
162 |
+
|
163 |
+
// Check if the requested entry exists in the cache
|
164 |
+
$query = "DELETE FROM kvp_".$this->_TableName." WHERE id='".$pCoord."'";
|
165 |
+
if (!$this->_DBHandle->queryExec($query))
|
166 |
+
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
167 |
+
|
168 |
+
$this->_currentCellIsDirty = false;
|
169 |
+
} // function deleteCacheData()
|
170 |
+
|
171 |
+
|
172 |
+
/**
|
173 |
+
* Move a cell object from one address to another
|
174 |
+
*
|
175 |
+
* @param string $fromAddress Current address of the cell to move
|
176 |
+
* @param string $toAddress Destination address of the cell to move
|
177 |
+
* @return boolean
|
178 |
+
*/
|
179 |
+
public function moveCell($fromAddress, $toAddress) {
|
180 |
+
if ($fromAddress === $this->_currentObjectID) {
|
181 |
+
$this->_currentObjectID = $toAddress;
|
182 |
+
}
|
183 |
+
|
184 |
+
$query = "DELETE FROM kvp_".$this->_TableName." WHERE id='".$toAddress."'";
|
185 |
+
$result = $this->_DBHandle->exec($query);
|
186 |
+
if ($result === false)
|
187 |
+
throw new PHPExcel_Exception($this->_DBHandle->lastErrorMsg());
|
188 |
+
|
189 |
+
$query = "UPDATE kvp_".$this->_TableName." SET id='".$toAddress."' WHERE id='".$fromAddress."'";
|
190 |
+
$result = $this->_DBHandle->exec($query);
|
191 |
+
if ($result === false)
|
192 |
+
throw new PHPExcel_Exception($this->_DBHandle->lastErrorMsg());
|
193 |
+
|
194 |
+
return TRUE;
|
195 |
+
} // function moveCell()
|
196 |
+
|
197 |
+
|
198 |
+
/**
|
199 |
+
* Get a list of all cell addresses currently held in cache
|
200 |
+
*
|
201 |
+
* @return string[]
|
202 |
+
*/
|
203 |
+
public function getCellList() {
|
204 |
+
if ($this->_currentObjectID !== null) {
|
205 |
+
$this->_storeData();
|
206 |
+
}
|
207 |
+
|
208 |
+
$query = "SELECT id FROM kvp_".$this->_TableName;
|
209 |
+
$cellIdsResult = $this->_DBHandle->unbufferedQuery($query,SQLITE_ASSOC);
|
210 |
+
if ($cellIdsResult === false)
|
211 |
+
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
212 |
+
|
213 |
+
$cellKeys = array();
|
214 |
+
foreach($cellIdsResult as $row) {
|
215 |
+
$cellKeys[] = $row['id'];
|
216 |
+
}
|
217 |
+
|
218 |
+
return $cellKeys;
|
219 |
+
} // function getCellList()
|
220 |
+
|
221 |
+
|
222 |
+
/**
|
223 |
+
* Clone the cell collection
|
224 |
+
*
|
225 |
+
* @param PHPExcel_Worksheet $parent The new worksheet
|
226 |
+
* @return void
|
227 |
+
*/
|
228 |
+
public function copyCellCollection(PHPExcel_Worksheet $parent) {
|
229 |
+
$this->_currentCellIsDirty;
|
230 |
+
$this->_storeData();
|
231 |
+
|
232 |
+
// Get a new id for the new table name
|
233 |
+
$tableName = str_replace('.','_',$this->_getUniqueID());
|
234 |
+
if (!$this->_DBHandle->queryExec('CREATE TABLE kvp_'.$tableName.' (id VARCHAR(12) PRIMARY KEY, value BLOB)
|
235 |
+
AS SELECT * FROM kvp_'.$this->_TableName))
|
236 |
+
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
237 |
+
|
238 |
+
// Copy the existing cell cache file
|
239 |
+
$this->_TableName = $tableName;
|
240 |
+
} // function copyCellCollection()
|
241 |
+
|
242 |
+
|
243 |
+
/**
|
244 |
+
* Clear the cell collection and disconnect from our parent
|
245 |
+
*
|
246 |
+
* @return void
|
247 |
+
*/
|
248 |
+
public function unsetWorksheetCells() {
|
249 |
+
if(!is_null($this->_currentObject)) {
|
250 |
+
$this->_currentObject->detach();
|
251 |
+
$this->_currentObject = $this->_currentObjectID = null;
|
252 |
+
}
|
253 |
+
// detach ourself from the worksheet, so that it can then delete this object successfully
|
254 |
+
$this->_parent = null;
|
255 |
+
|
256 |
+
// Close down the temporary cache file
|
257 |
+
$this->__destruct();
|
258 |
+
} // function unsetWorksheetCells()
|
259 |
+
|
260 |
+
|
261 |
+
/**
|
262 |
+
* Initialise this new cell collection
|
263 |
+
*
|
264 |
+
* @param PHPExcel_Worksheet $parent The worksheet for this cell collection
|
265 |
+
*/
|
266 |
+
public function __construct(PHPExcel_Worksheet $parent) {
|
267 |
+
parent::__construct($parent);
|
268 |
+
if (is_null($this->_DBHandle)) {
|
269 |
+
$this->_TableName = str_replace('.','_',$this->_getUniqueID());
|
270 |
+
$_DBName = ':memory:';
|
271 |
+
|
272 |
+
$this->_DBHandle = new SQLiteDatabase($_DBName);
|
273 |
+
if ($this->_DBHandle === false)
|
274 |
+
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
275 |
+
if (!$this->_DBHandle->queryExec('CREATE TABLE kvp_'.$this->_TableName.' (id VARCHAR(12) PRIMARY KEY, value BLOB)'))
|
276 |
+
throw new PHPExcel_Exception(sqlite_error_string($this->_DBHandle->lastError()));
|
277 |
+
}
|
278 |
+
} // function __construct()
|
279 |
+
|
280 |
+
|
281 |
+
/**
|
282 |
+
* Destroy this cell collection
|
283 |
+
*/
|
284 |
+
public function __destruct() {
|
285 |
+
if (!is_null($this->_DBHandle)) {
|
286 |
+
$this->_DBHandle->queryExec('DROP TABLE kvp_'.$this->_TableName);
|
287 |
+
}
|
288 |
+
$this->_DBHandle = null;
|
289 |
+
} // function __destruct()
|
290 |
+
|
291 |
+
|
292 |
+
/**
|
293 |
+
* Identify whether the caching method is currently available
|
294 |
+
* Some methods are dependent on the availability of certain extensions being enabled in the PHP build
|
295 |
+
*
|
296 |
+
* @return boolean
|
297 |
+
*/
|
298 |
+
public static function cacheMethodIsAvailable() {
|
299 |
+
if (!function_exists('sqlite_open')) {
|
300 |
+
return false;
|
301 |
+
}
|
302 |
+
|
303 |
+
return true;
|
304 |
+
}
|
305 |
+
|
306 |
+
}
|
i18n/languages/wp_all_import_plugin-de_CH.mo
ADDED
Binary file
|
i18n/languages/wp_all_import_plugin-de_CH.po
ADDED
@@ -0,0 +1,4861 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP All Import\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-13 09:37+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-01-28 13:14+0100\n"
|
7 |
+
"Last-Translator: admin <makstsiplyskov@gmail.loc>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: de\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Poedit 1.8.5\n"
|
16 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;"
|
17 |
+
"_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;"
|
18 |
+
"_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;"
|
19 |
+
"esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;"
|
20 |
+
"t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
+
"X-Poedit-Basepath: .\n"
|
22 |
+
"X-Loco-Target-Locale: de_DE\n"
|
23 |
+
"X-Poedit-SearchPath-0: .\n"
|
24 |
+
|
25 |
+
#. Name of the plugin
|
26 |
+
msgid "WP All Import Pro"
|
27 |
+
msgstr "WP All Import"
|
28 |
+
|
29 |
+
#. URI of the plugin
|
30 |
+
msgid "http://www.wpallimport.com"
|
31 |
+
msgstr "http://www.wpallimport.com"
|
32 |
+
|
33 |
+
#. Description of the plugin
|
34 |
+
msgid ""
|
35 |
+
"The most powerful solution for importing XML and CSV files to WordPress. Import to "
|
36 |
+
"Posts, Pages, and Custom Post Types. Support for imports that run on a schedule, "
|
37 |
+
"ability to update existing imports, and much more."
|
38 |
+
msgstr ""
|
39 |
+
"Die leistungsstärkste Lösung für den Import von XML und CSV-Dateien in Wordpress. "
|
40 |
+
"Importiert zu Beiträgen, Seiten, und benutzerdefinierten Beitragstypen. "
|
41 |
+
"Unterstützung für Importe nach einem Zeitplan, die Fähigkeit, bestehende Importe zu "
|
42 |
+
"aktualisieren und vieles mehr."
|
43 |
+
|
44 |
+
#. Author of the plugin
|
45 |
+
msgid "Soflyy"
|
46 |
+
msgstr "Soflyy"
|
47 |
+
|
48 |
+
#: ../../actions/wp_ajax_delete_import.php:36 ../../controllers/admin/manage.php: 594
|
49 |
+
msgid "All associated posts deleted."
|
50 |
+
msgstr "Alle damit verbundenen Beiträge gelöscht."
|
51 |
+
|
52 |
+
#: ../../actions/wp_ajax_delete_import.php:40 ../../controllers/admin/manage.php: 598
|
53 |
+
msgid "Import and all associated posts deleted."
|
54 |
+
msgstr "Import und alle zugehörigen Einträge gelöscht."
|
55 |
+
|
56 |
+
#: ../../actions/wp_ajax_delete_import.php:44 ../../controllers/admin/manage.php: 579
|
57 |
+
msgid "Nothing to delete."
|
58 |
+
msgstr "Nichts zu löschen."
|
59 |
+
|
60 |
+
#: ../../actions/wp_ajax_delete_import.php:66
|
61 |
+
#, php-format
|
62 |
+
msgid "Import #%d - %d records deleted"
|
63 |
+
msgstr "Import #% d -% d Datensätze gelöscht"
|
64 |
+
|
65 |
+
#: ../../actions/wp_ajax_save_import_functions.php:43
|
66 |
+
msgid "PHP code must be wrapped in \"<?php\" and \"?>\""
|
67 |
+
msgstr "PHP code muss von \"<?php\" und \"?>\" umschlossen sein."
|
68 |
+
|
69 |
+
#: ../../actions/wp_ajax_save_import_functions.php:52
|
70 |
+
msgid "File has been successfully updated."
|
71 |
+
msgstr "Die Datei wurde erfolgreich aktualisiert."
|
72 |
+
|
73 |
+
#: ../../actions/wp_ajax_test_images.php:95
|
74 |
+
#, php-format
|
75 |
+
msgid "Image `%s` not found in media library."
|
76 |
+
msgstr "Das Bild `%s` wurde in der Medienbibliothek nicht gefunden."
|
77 |
+
|
78 |
+
#: ../../actions/wp_ajax_test_images.php:102
|
79 |
+
#, php-format
|
80 |
+
msgid "%d image was successfully founded in media gallery"
|
81 |
+
msgstr "%d wurde erfolgreich in zur Galerie hinzu gefügt"
|
82 |
+
|
83 |
+
#: ../../actions/wp_ajax_test_images.php:106
|
84 |
+
#, php-format
|
85 |
+
msgid "%d images were successfully founded in media gallery"
|
86 |
+
msgstr "%d Bilder wurden erfolgreich zur Galerie hinzu gefügt"
|
87 |
+
|
88 |
+
#: ../../actions/wp_ajax_upload_resource.php:116
|
89 |
+
msgid "Please verify that the URL returns a valid import file."
|
90 |
+
msgstr "Bitte überprüfen Sie dass die URL auf eine gültige Import Datei zeigt."
|
91 |
+
|
92 |
+
#: ../../actions/wp_loaded.php:253
|
93 |
+
#, php-format
|
94 |
+
msgid "Import #%s canceled"
|
95 |
+
msgstr "Import #%s abgebrochen "
|
96 |
+
|
97 |
+
#: ../../classes/render.php:68 ../../classes/render.php:88 ../../classes/render.
|
98 |
+
#: php:166 ../../classes/render.php:186 ../../views/admin/import/evaluate.php:5 ..
|
99 |
+
#: /../views/admin/import/evaluate_variations.php:3
|
100 |
+
msgid "element"
|
101 |
+
msgid_plural "elements"
|
102 |
+
msgstr[0] "Element"
|
103 |
+
msgstr[1] "Elemente"
|
104 |
+
|
105 |
+
#: ../../controllers/admin/history.php:139
|
106 |
+
msgid "history"
|
107 |
+
msgid_plural "histories"
|
108 |
+
msgstr[0] "Chronik"
|
109 |
+
msgstr[1] "Chroniken"
|
110 |
+
|
111 |
+
#: ../../controllers/admin/import.php:1829
|
112 |
+
msgid "Post ID must be specified."
|
113 |
+
msgstr "Beitrags-ID muss angegeben werden "
|
114 |
+
|
115 |
+
#: ../../controllers/admin/manage.php:243
|
116 |
+
msgid ""
|
117 |
+
"The other two files in this zip are the export file containing all of your data and "
|
118 |
+
"the import template for WP All Import. \n"
|
119 |
+
"\n"
|
120 |
+
"To import this data, create a new import with WP All Import and upload this zip file."
|
121 |
+
msgstr ""
|
122 |
+
"Die anderen beiden Datein in diesem Zip-Archiv sind eine Export Datei, welche alle "
|
123 |
+
"Daten enthält sowie eine Import Vorlage für WP All Import.\n"
|
124 |
+
"\n"
|
125 |
+
"Um diese Daten zu importieren, legen Sie mit WP All Import einen neuen Import an und "
|
126 |
+
"laden Sie diese Zip-Datei hoch."
|
127 |
+
|
128 |
+
#: ../../controllers/admin/manage.php:634 ../../views/admin/manage/bulk.php:10
|
129 |
+
msgid "import"
|
130 |
+
msgid_plural "imports"
|
131 |
+
msgstr[0] "Import"
|
132 |
+
msgstr[1] "Importe"
|
133 |
+
|
134 |
+
#: ../../controllers/admin/settings.php:127
|
135 |
+
#, php-format
|
136 |
+
msgid "%d template imported"
|
137 |
+
msgid_plural "%d templates imported"
|
138 |
+
msgstr[0] "%d Vorlage importiert"
|
139 |
+
msgstr[1] "%d Vorlagen importiert"
|
140 |
+
|
141 |
+
#: ../../controllers/admin/settings.php:151
|
142 |
+
#, php-format
|
143 |
+
msgid "%d template deleted"
|
144 |
+
msgid_plural "%d templates deleted"
|
145 |
+
msgstr[0] "%d Vorlage gelöscht"
|
146 |
+
msgstr[1] "%d Vorlagen gelöscht"
|
147 |
+
|
148 |
+
#: ../../controllers/admin/settings.php:652
|
149 |
+
#, php-format
|
150 |
+
msgid "This %s file has errors and is not valid."
|
151 |
+
msgstr "Diese %s Datei hat Fehler und ist nicht gültig."
|
152 |
+
|
153 |
+
#: ../../helpers/wp_all_import_addon_notifications.php:124
|
154 |
+
msgid "WP All Export"
|
155 |
+
msgstr "WP All Export"
|
156 |
+
|
157 |
+
#: ../../helpers/wp_all_import_addon_notifications.php:125
|
158 |
+
msgid "Export anything in WordPress to CSV, XML, or Excel."
|
159 |
+
msgstr "Exportieren Sie alles aus WordPress in CSV, XML oder Excel."
|
160 |
+
|
161 |
+
#: ../../helpers/wp_all_import_addon_notifications.php:128 ../..
|
162 |
+
#: /views/admin/import/confirm.php:47 ../../views/admin/import/index.php:254
|
163 |
+
#: /views/admin/import/index.php:271 ../../views/admin/import/process.php:69
|
164 |
+
#: /views/admin/import/process.php:103 /views/admin/import/options/_import_file.php:40
|
165 |
+
#: /views/admin/import/options/_import_file.php:57
|
166 |
+
msgid "Read More"
|
167 |
+
msgstr "Weiterlesen"
|
168 |
+
|
169 |
+
#: ../../models/import/record.php:662
|
170 |
+
msgid "Composing post IDs..."
|
171 |
+
msgstr "Beitrags-IDs zusammen stellen"
|
172 |
+
|
173 |
+
#: ../../models/import/record.php:1656
|
174 |
+
#, php-format
|
175 |
+
msgid "Preserve comment status of already existing article for `%s`"
|
176 |
+
msgstr "Kommentar Status für bereits existierende Artikel beibehalten für `%s`"
|
177 |
+
|
178 |
+
#: ../../models/import/record.php:1812
|
179 |
+
#, php-format
|
180 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_create `%s`"
|
181 |
+
msgstr "<b>ÜBERSPRUNGEN</b>: Durch den Filter wp_all_import_is_post_to_create `%s`"
|
182 |
+
|
183 |
+
#: ../../models/import/record.php:2280
|
184 |
+
#, php-format
|
185 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
186 |
+
msgstr "- <b>WARNUNG</b>: Bild %s wurde in der Mediengalerie nicht gefunden."
|
187 |
+
|
188 |
+
#: ../../models/import/record.php:2284
|
189 |
+
#, php-format
|
190 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
191 |
+
msgstr "- Verwende das existierende Bild `%s` für den Beitrag `%s` ..."
|
192 |
+
|
193 |
+
#: ../../models/import/record.php:2473
|
194 |
+
#, php-format
|
195 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
196 |
+
msgstr "- Der Anhang für das Bild `%s` wurde erfolgreich aktualisiert."
|
197 |
+
|
198 |
+
#: ../../models/import/record.php:2537
|
199 |
+
#, php-format
|
200 |
+
msgid ""
|
201 |
+
"Images import skipped for post `%s` according to 'pmxi_is_images_to_update' filter..."
|
202 |
+
msgstr ""
|
203 |
+
"Der Bildimport für den Beitrag `%s` wurde gemäss dem Filter "
|
204 |
+
"'pmxi_is_images_to_update' übersprungen…"
|
205 |
+
|
206 |
+
#: ../../models/import/record.php:2647
|
207 |
+
#, php-format
|
208 |
+
msgid ""
|
209 |
+
"Attachments import skipped for post `%s` according to "
|
210 |
+
"'pmxi_is_attachments_to_update' filter..."
|
211 |
+
msgstr ""
|
212 |
+
"Der Anhangsimport für den Beitrag `%s` wurde gemäss dem Filter "
|
213 |
+
"'pmxi_is_attachments_to_update' übersprungen…"
|
214 |
+
|
215 |
+
#: ../../models/import/record.php:3030
|
216 |
+
#, php-format
|
217 |
+
msgid "%d Posts deleted from database"
|
218 |
+
msgstr "%d Beiträge aus der Datenbank gelöscht"
|
219 |
+
|
220 |
+
#: ../../views/admin/import/confirm.php:43 ../../views/admin/import/index.php:260
|
221 |
+
#: ../../views/admin/import/options/_import_file.php:46
|
222 |
+
msgid "There's a problem with your import file"
|
223 |
+
msgstr "Es gibt ein Problem mit Ihrer Import Datei"
|
224 |
+
|
225 |
+
#: ../../views/admin/import/confirm.php:44
|
226 |
+
msgid "It has changed and is not compatible with this import template."
|
227 |
+
msgstr "Diese hat sich verändert und ist mit dieser Import-Vorlage nicht kompatibel."
|
228 |
+
|
229 |
+
#: ../../views/admin/import/evaluate.php:3
|
230 |
+
msgid "row"
|
231 |
+
msgid_plural "rows"
|
232 |
+
msgstr[0] "Zeile"
|
233 |
+
msgstr[1] "Zeilen"
|
234 |
+
|
235 |
+
#: ../../views/admin/import/index.php:250 ../..
|
236 |
+
#: /views/admin/import/options/_import_file.php:36
|
237 |
+
msgid "File upload rejected by server"
|
238 |
+
msgstr "Datei-Upload wurde vom Server zurückgewiesen"
|
239 |
+
|
240 |
+
#: ../../views/admin/import/index.php:251 ../..
|
241 |
+
#: /views/admin/import/options/_import_file.php:37
|
242 |
+
msgid "Contact your host and have them check your server's error log."
|
243 |
+
msgstr ""
|
244 |
+
"Nehmen Sie Kontakt mit Ihrem Hoster auf und lassen Sie diese die Fehlerlogs des "
|
245 |
+
"Servers prüfen."
|
246 |
+
|
247 |
+
#: ../../views/admin/import/index.php:265 ../..
|
248 |
+
#: /views/admin/import/options/_import_file.php:51
|
249 |
+
#, php-format
|
250 |
+
msgid "Please verify that the file you using is a valid %s file."
|
251 |
+
msgstr "Bitte stellen Sie sicher, dass die verwendete Datei %s gültig ist."
|
252 |
+
|
253 |
+
#: ../../views/admin/import/preview_images.php:17
|
254 |
+
msgid "Test Images"
|
255 |
+
msgstr "Bilder testen."
|
256 |
+
|
257 |
+
#: ../../views/admin/import/preview_images.php:24
|
258 |
+
msgid "Click to test that your images are able to be accessed by WP All Import."
|
259 |
+
msgstr ""
|
260 |
+
"Hier klicken um zu überprüfen, dass WP All Import auf Ihre Bilder zugreifen kann."
|
261 |
+
|
262 |
+
#: ../../views/admin/import/preview_images.php:26
|
263 |
+
msgid "Run Test"
|
264 |
+
msgstr "Test starten"
|
265 |
+
|
266 |
+
#: ../../views/admin/import/preview_images.php:92
|
267 |
+
msgid "Searching images..."
|
268 |
+
msgstr "Bilder werden gesucht…"
|
269 |
+
|
270 |
+
#: ../../views/admin/import/preview_images.php:96
|
271 |
+
msgid "WP All Import will import images from the media library"
|
272 |
+
msgstr "WP All Import wird Bilder aus der Medienbibliothek importieren."
|
273 |
+
|
274 |
+
#: ../../views/admin/import/preview_images.php:97
|
275 |
+
msgid "Please ensure the images exists at media library"
|
276 |
+
msgstr "Bitte stellen Sie sicher, dass die Bilder in der Medienbibliothek existieren."
|
277 |
+
|
278 |
+
#: ../../views/admin/import/process.php:61
|
279 |
+
msgid "Hide this notice."
|
280 |
+
msgstr "Diesen Hinweis verstecken."
|
281 |
+
|
282 |
+
#: ../../views/admin/import/process.php:65
|
283 |
+
msgid "Want to speed up your import?"
|
284 |
+
msgstr "Wollen Sie Ihren Import beschleunigen?"
|
285 |
+
|
286 |
+
#: ../../views/admin/import/process.php:66
|
287 |
+
msgid "Check out our guide on increasing import speed."
|
288 |
+
msgstr ""
|
289 |
+
"Lesen Sie unsere Anleitung, wie Sie die Import Geschwindigkeit steigern können."
|
290 |
+
|
291 |
+
#: ../../views/admin/import/process.php:70
|
292 |
+
msgid "opens in new tab"
|
293 |
+
msgstr "wird in einem neuen Tab geöffnet."
|
294 |
+
|
295 |
+
#: ../../views/admin/import/process.php:78 ../../views/admin/import/process.php:99
|
296 |
+
msgid "Your server terminated the import process"
|
297 |
+
msgstr "Ihr Server hat den Import Prozess beendet."
|
298 |
+
|
299 |
+
#: ../../views/admin/import/process.php:79
|
300 |
+
#, php-format
|
301 |
+
msgid ""
|
302 |
+
"<a href='%s' target='_blank'>Read more</a> about how to prevent this from happening "
|
303 |
+
"again."
|
304 |
+
msgstr ""
|
305 |
+
"<a href='%s' target='_blank'>Hier lesen</a> wie dies in Zukunft verhindert werden "
|
306 |
+
"kann."
|
307 |
+
|
308 |
+
#: ../../views/admin/import/process.php:83
|
309 |
+
#, php-format
|
310 |
+
msgid ""
|
311 |
+
"with <span id='wpallimport-new-records-per-iteration'>%s</span> records per iteration"
|
312 |
+
msgstr ""
|
313 |
+
"mit <span id='wpallimport-new-records-per-iteration'>%s</span> Einträgen pro "
|
314 |
+
"Durchgang"
|
315 |
+
|
316 |
+
#: ../../views/admin/import/process.php:100
|
317 |
+
msgid ""
|
318 |
+
"Ask your host to check your server's error log. They will be able to determine why "
|
319 |
+
"your server is terminating the import process."
|
320 |
+
msgstr ""
|
321 |
+
"Bitten Sie Ihren Hoster die Server Fehlerlogs zu prüfen. Diese werden schliessen "
|
322 |
+
"können, warum Ihr Server den Import Prozess abgebrochen hat."
|
323 |
+
|
324 |
+
#: ../../views/admin/import/template.php:146 ../../views/admin/settings/index.php: 194
|
325 |
+
msgid "Function Editor"
|
326 |
+
msgstr "Funktions-Editor"
|
327 |
+
|
328 |
+
#: ../../views/admin/import/template.php:156 ../../views/admin/settings/index.php: 202
|
329 |
+
msgid "Save Functions"
|
330 |
+
msgstr "Funktionen speichern"
|
331 |
+
|
332 |
+
#: ../../views/admin/import/template.php:157 ../../views/admin/settings/index.php: 203
|
333 |
+
#, php-format
|
334 |
+
msgid "Add functions here for use during your import. You can access this file at %s"
|
335 |
+
msgstr ""
|
336 |
+
"Fügen Sie hier Funktionen hinzu, welche während Ihrem Import verwendet werden. Sie "
|
337 |
+
"können diese Datei hier finden: %s"
|
338 |
+
|
339 |
+
#: ../../views/admin/import/options/_reimport_options.php:4
|
340 |
+
msgid "If this import is run again and WP All Import finds new or changed data..."
|
341 |
+
msgstr ""
|
342 |
+
"Wenn dieser Import erneut durchgeführt wird und WP All Imports neue oder veränderte "
|
343 |
+
"Daten findet…"
|
344 |
+
|
345 |
+
#: ../../views/admin/import/options/_reimport_options.php:20
|
346 |
+
msgid ""
|
347 |
+
"Records removed from the import file can only be deleted when importing into New "
|
348 |
+
"Items. This feature cannot be enabled when importing into Existing Items."
|
349 |
+
msgstr ""
|
350 |
+
"Einträge, welche aus der Import Datei entfernt wurden können nur gelsöcht werden, "
|
351 |
+
"wenn in Neue Einträge importiert wird. Dies Feature kann nicht aktiviert werden, "
|
352 |
+
"wenn in existierende Einträge importiert wird."
|
353 |
+
|
354 |
+
#: ../../views/admin/import/options/_reimport_options.php:59
|
355 |
+
msgid ""
|
356 |
+
"These options will only be used if you run this import again later. All data is "
|
357 |
+
"imported the first time you run an import."
|
358 |
+
msgstr ""
|
359 |
+
"Diese Optionen werden verwendet, wenn Sie diesen Import später wieder ausführen. "
|
360 |
+
"Alle Daten werden mit Ihrem ersten Import importiert."
|
361 |
+
|
362 |
+
#: ../../views/admin/import/options/_reimport_options.php:117
|
363 |
+
msgid "Comment status"
|
364 |
+
msgstr "Kommentar Status"
|
365 |
+
|
366 |
+
#: ../../views/admin/import/options/_reimport_template.php:113
|
367 |
+
msgid "Post ID"
|
368 |
+
msgstr "Beitrags-ID"
|
369 |
+
|
370 |
+
#: ../../views/admin/import/options/_settings_template.php:94
|
371 |
+
msgid "Downloads"
|
372 |
+
msgstr "Downloads"
|
373 |
+
|
374 |
+
#: ../../views/admin/import/options/_settings_template.php:97
|
375 |
+
msgid "Import Template"
|
376 |
+
msgstr "Vorlage importieren"
|
377 |
+
|
378 |
+
#: ../../views/admin/import/options/_settings_template.php:98
|
379 |
+
msgid "Import Bundle"
|
380 |
+
msgstr "Bundle importieren"
|
381 |
+
|
382 |
+
#: ../../views/admin/import/template/_featured_template.php:15
|
383 |
+
msgid "Download images hosted elsewhere"
|
384 |
+
msgstr "Bilder von einem anderen Server laden"
|
385 |
+
|
386 |
+
#: ../../views/admin/import/template/_featured_template.php:25
|
387 |
+
msgid "Use images currently in Media Library"
|
388 |
+
msgstr "Benutze Bilder, welche zur Zeit in der Medienbibliothek sind"
|
389 |
+
|
390 |
+
#: ../../views/admin/import/template/_featured_template.php:36
|
391 |
+
#, php-format
|
392 |
+
msgid "Use images currently uploaded in %s"
|
393 |
+
msgstr "Benutze Bilder, welche in das Verzeichnis %s geladen wurden."
|
394 |
+
|
395 |
+
#: ../../views/admin/import/template/_featured_template.php:44
|
396 |
+
msgid "Image Options"
|
397 |
+
msgstr "Bild Optionen"
|
398 |
+
|
399 |
+
#: ../../views/admin/import/template/_featured_template.php:55
|
400 |
+
msgid "Keep images currently in Media Library"
|
401 |
+
msgstr "Bilder, welche zur Zeit in der Medienbibliothek sind, behalten."
|
402 |
+
|
403 |
+
#: ../../views/admin/import/template/_featured_template.php:56
|
404 |
+
msgid ""
|
405 |
+
"If disabled, images attached to imported posts will be deleted and then all images "
|
406 |
+
"will be imported."
|
407 |
+
msgstr ""
|
408 |
+
"Ist dies deaktiviert, werden alle Bilder, welche zu importierten Beiträgen gehören "
|
409 |
+
"gelöscht und neu importiert."
|
410 |
+
|
411 |
+
#: ../../views/admin/import/template/_featured_template.php:132
|
412 |
+
msgid "Separate them with a"
|
413 |
+
msgstr "Trennen Sie diese mit einem"
|
414 |
+
|
415 |
+
#: ../../views/admin/import/template/_featured_template.php:137
|
416 |
+
msgid "Enter them one per line"
|
417 |
+
msgstr "Tragen Sie einen pro Zeile ein"
|
418 |
+
|
419 |
+
#: ../../views/admin/import/template/_featured_template.php:145
|
420 |
+
msgid ""
|
421 |
+
"These options only available if Download images hosted elsewhere is selected above."
|
422 |
+
msgstr ""
|
423 |
+
"Diese Optionen sind nur verfügbar, wenn oben Bilder von einem anderen Server laden "
|
424 |
+
"aktiviert wurde."
|
425 |
+
|
426 |
+
#: ../../views/admin/import/template/_other_template.php:274
|
427 |
+
msgid "Dynamic Post Type"
|
428 |
+
msgstr "Dynamischer Post Typ"
|
429 |
+
|
430 |
+
#: ../../views/admin/import/template/_other_template.php:284
|
431 |
+
msgid ""
|
432 |
+
"If records in this import have different post types specify the slug of the desired "
|
433 |
+
"post type here.\n"
|
434 |
+
msgstr ""
|
435 |
+
"Falls die Einträge in diesem Import verschiedene Post Typen haben, geben Sie hier "
|
436 |
+
"die Slug des gewünschten Post Typen an.\n"
|
437 |
+
|
438 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:215
|
439 |
+
msgid "Add Another Row"
|
440 |
+
msgstr "Eine weitere Zeile hinzufügen"
|
441 |
+
|
442 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:296 ../..
|
443 |
+
#: /views/admin/import/template/_taxonomies_template.php:296
|
444 |
+
msgid "Add Another Rule"
|
445 |
+
msgstr "Eine weitere Regel hinzufügen"
|
446 |
+
|
447 |
+
#: ../../views/admin/manage/bulk.php:1
|
448 |
+
msgid "Bulk Delete Imports"
|
449 |
+
msgstr "Alle Importe löschen (Massen Aktion)"
|
450 |
+
|
451 |
+
#: ../../views/admin/manage/delete.php:8
|
452 |
+
msgid "Delete import"
|
453 |
+
msgstr "Import löschen"
|
454 |
+
|
455 |
+
#: ../../views/admin/manage/delete.php:13
|
456 |
+
#, php-format
|
457 |
+
msgid "Delete posts created by %s"
|
458 |
+
msgstr "Beiträge von %s löschen"
|
459 |
+
|
460 |
+
#: ../../views/admin/manage/delete.php:46
|
461 |
+
msgid "Are you sure you want to delete "
|
462 |
+
msgstr "Sind Sie sicher, dass Sie "
|
463 |
+
|
464 |
+
#: ../../views/admin/manage/delete.php:46
|
465 |
+
#, php-format
|
466 |
+
msgid "the <strong>%s</strong> import"
|
467 |
+
msgstr "den <strong>%s</strong> löschen wollen"
|
468 |
+
|
469 |
+
#: ../../wp-all-import-pro.php:20
|
470 |
+
msgid ""
|
471 |
+
"Please de-activate and remove the free version of WP All Import before activating "
|
472 |
+
"the paid version."
|
473 |
+
msgstr ""
|
474 |
+
"Bitte deaktivieren und entfernen Sie die freie Version von WP All Import bevor Sie "
|
475 |
+
"die bezahlte Version aktivieren."
|
476 |
+
|
477 |
+
#: ../../wp-all-import-pro.php:335
|
478 |
+
#, php-format
|
479 |
+
msgid ""
|
480 |
+
"To enable updates, please enter your license key on the <a href=\"%s\">Licenses</a> "
|
481 |
+
"page. If you don't have a licence key, please see <a href=\"%s\">details & pricing</"
|
482 |
+
"a>"
|
483 |
+
msgstr ""
|
484 |
+
"Um Updates zu aktivieren, geben Sie bitte Ihren Lizenz Schlüssel auf der <a href=\"%s"
|
485 |
+
"\">Lizenzen</a> Seite ein. Wenn Sie noch keinen Lizenz Schlüssel haben, finden Sie "
|
486 |
+
"hier <a href=\"%s\">Details und Preise</a>"
|
487 |
+
|
488 |
+
#: ../../wp-all-import-pro.php:825 ../../wp-all-import-pro.php:829
|
489 |
+
#, php-format
|
490 |
+
msgid "Uploads folder %s must be writable"
|
491 |
+
msgstr "Ordner %s muss beschreibbar sein"
|
492 |
+
|
493 |
+
#: ../../wp-all-import-pro.php:939
|
494 |
+
#, php-format
|
495 |
+
msgid "<b>%s Plugin</b>: Current sql user %s doesn't have ALTER privileges"
|
496 |
+
msgstr "<b>%s Plugin:</b> Aktuelle SQL-Benutzer%s verfügen nicht über Änderungsrechte"
|
497 |
+
|
498 |
+
#: ../../actions/admin_menu.php:12
|
499 |
+
msgid "New Import"
|
500 |
+
msgstr "Neuer Import"
|
501 |
+
|
502 |
+
#: ../../actions/admin_menu.php:13 ../../views/admin/import/process.php:54 ../..
|
503 |
+
#: /views/admin/manage/index.php:5
|
504 |
+
msgid "Manage Imports"
|
505 |
+
msgstr "Imports verwalten"
|
506 |
+
|
507 |
+
#: ../../actions/admin_menu.php:14 ../../views/admin/settings/index.php:7
|
508 |
+
msgid "Settings"
|
509 |
+
msgstr "Einstellungen"
|
510 |
+
|
511 |
+
#: ../../actions/admin_menu.php:16
|
512 |
+
msgid "History"
|
513 |
+
msgstr "Chronik"
|
514 |
+
|
515 |
+
#: ../../actions/admin_menu.php:22 ../../controllers/admin/license.php:18 ../..
|
516 |
+
#: /controllers/admin/settings.php:50 ../../views/admin/import/confirm.php:11 ../.
|
517 |
+
#: views/admin/import/element.php:8 ../../views/admin/import/index.php:43
|
518 |
+
#: /views/admin/import/options.php:18 ../../views/admin/import/process.php:8
|
519 |
+
#: /views/admin/import/template.php:9 ../../views/admin/manage/index.php:4
|
520 |
+
#: /views/admin/settings/index.php:6
|
521 |
+
msgid "WP All Import"
|
522 |
+
msgstr "WP All Import"
|
523 |
+
|
524 |
+
#: ../../actions/admin_menu.php:22
|
525 |
+
msgid "All Import"
|
526 |
+
msgstr "All Import"
|
527 |
+
|
528 |
+
#: ../../actions/admin_notices.php:12
|
529 |
+
#, php-format
|
530 |
+
msgid ""
|
531 |
+
"<b>%s Plugin</b>: Please update your WP All Import WooCommerce add-on to the latest "
|
532 |
+
"version"
|
533 |
+
msgstr ""
|
534 |
+
"<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import WooCommerce add-on."
|
535 |
+
|
536 |
+
#: ../../actions/admin_notices.php:39
|
537 |
+
#, php-format
|
538 |
+
msgid ""
|
539 |
+
"<b>%s Plugin</b>: Please update your WP All Import ACF add-on to the latest version"
|
540 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import ACF add-on."
|
541 |
+
|
542 |
+
#: ../../actions/admin_notices.php:56
|
543 |
+
#, php-format
|
544 |
+
msgid ""
|
545 |
+
"<b>%s Plugin</b>: Please update your WP All Import Linkcloak add-on to the latest "
|
546 |
+
"version"
|
547 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import Linkcloak add-on."
|
548 |
+
|
549 |
+
#: ../../actions/admin_notices.php:73
|
550 |
+
#, php-format
|
551 |
+
msgid ""
|
552 |
+
"<b>%s Plugin</b>: Please update your WP All Import User add-on to the latest version"
|
553 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import User add-on."
|
554 |
+
|
555 |
+
#: ../../actions/admin_notices.php:90
|
556 |
+
#, php-format
|
557 |
+
msgid ""
|
558 |
+
"<b>%s Plugin</b>: The WPML Add-On Plugin is no longer compatible with this version "
|
559 |
+
"of WP All Import - please contact support@wpallimport.com and we will supply the "
|
560 |
+
"latest version of WP All Import that is compatible with the WPML Add-On."
|
561 |
+
msgstr ""
|
562 |
+
"<b>%s Plugin</b>: Das WPML add-on Plugin ist leider nicht mehr kompatibel mit dieser "
|
563 |
+
"Version von WP All Import. Bitte kontaktieren Sie den Support unter "
|
564 |
+
"support@wpallimport.com und wir werden Ihnen die neueste Version von WP All Import "
|
565 |
+
"anbieten die mit dem WPML add-on kompatibel ist."
|
566 |
+
|
567 |
+
#: ../../actions/admin_notices.php:119 ../../controllers/admin/import.php:1498 ..
|
568 |
+
#: /../controllers/admin/import.php:1720 ../../controllers/admin/import.php:2223
|
569 |
+
msgid "<strong>Warning:</strong> your title is blank."
|
570 |
+
msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
|
571 |
+
|
572 |
+
#: ../../actions/admin_notices.php:122 ../../controllers/admin/import.php:1505 ..
|
573 |
+
#: /../controllers/admin/import.php:1722 ../../controllers/admin/import.php:2225
|
574 |
+
msgid "<strong>Warning:</strong> your content is blank."
|
575 |
+
msgstr "<strong>Warnung:</strong> Ihr Inhalt ist leer."
|
576 |
+
|
577 |
+
#: ../../actions/wp_ajax_auto_detect_cf.php:5 ../..
|
578 |
+
#: /actions/wp_ajax_auto_detect_cf.php:9 ../../actions/wp_ajax_auto_detect_sf.php: 5
|
579 |
+
#: ../../actions/wp_ajax_auto_detect_sf.php:9 /actions/wp_ajax_delete_import.php:5
|
580 |
+
#: ../../actions/wp_ajax_delete_import.php:9
|
581 |
+
#: ../../actions/wp_ajax_dismiss_notifications.php:5
|
582 |
+
#: /actions/wp_ajax_dismiss_notifications.php:9 /actions/wp_ajax_import_failed.php:5
|
583 |
+
#: ../../actions/wp_ajax_import_failed.php:9 ../../actions/wp_ajax_nested_merge.php:6
|
584 |
+
#: ../../actions/wp_ajax_nested_merge. php:10 ../../actions/wp_ajax_nested_xpath.php:6
|
585 |
+
#: /actions/wp_ajax_nested_xpath.php:10 ../../actions/wp_ajax_parse_nested_file.
|
586 |
+
#: ../../actions/wp_ajax_parse_nested_file.php:14
|
587 |
+
#: /actions/wp_ajax_save_import_functions.php:6
|
588 |
+
#: /actions/wp_ajax_save_import_functions.php:10 /actions/wp_ajax_test_images.php:6
|
589 |
+
#: ../../actions/wp_ajax_test_images.php:10 .. /../actions/wp_ajax_unmerge_file.php:5
|
590 |
+
#: ../../actions/wp_ajax_unmerge_file.php: 9
|
591 |
+
#: ../../actions/wp_ajax_upload_resource.php:6 /actions/wp_ajax_upload_resource.php:10
|
592 |
+
#: ../../controllers/admin/history.php:74 ../../controllers/admin/import.php:563
|
593 |
+
#: ../../controllers/admin/import.php:868 . ../controllers/admin/import.php:1006
|
594 |
+
#: ../../controllers/admin/import.php:1145 ../../controllers/admin/import.php:1300
|
595 |
+
#: ../../controllers/admin/import.php: 2462 ../../controllers/admin/manage.php:126
|
596 |
+
#: ../../controllers/admin/manage.php: 169 ../../controllers/admin/manage.php:279 527
|
597 |
+
#: ../../controllers/admin/settings.php:420
|
598 |
+
msgid "Security check"
|
599 |
+
msgstr "Sicherheitskontrolle"
|
600 |
+
|
601 |
+
#: ../../actions/wp_ajax_auto_detect_cf.php:59
|
602 |
+
#, php-format
|
603 |
+
msgid "No Custom Fields are present in your database for %s"
|
604 |
+
msgstr "Keine selbst erstellten Felder in der Datenbank %s"
|
605 |
+
|
606 |
+
#: ../../actions/wp_ajax_auto_detect_cf.php:62
|
607 |
+
#, php-format
|
608 |
+
msgid "%s field was automatically detected."
|
609 |
+
msgstr "%s Feld wurde automatisch erkannt."
|
610 |
+
|
611 |
+
#: ../../actions/wp_ajax_auto_detect_cf.php:64
|
612 |
+
#, php-format
|
613 |
+
msgid "%s fields were automatically detected."
|
614 |
+
msgstr "%s Felder wurden automatisch erkannt."
|
615 |
+
|
616 |
+
#: ../../actions/wp_ajax_delete_import.php:32 ../../controllers/admin/manage.php: 590
|
617 |
+
msgid "Import deleted"
|
618 |
+
msgstr "Import gelöscht"
|
619 |
+
|
620 |
+
#: ../../actions/wp_ajax_nested_xpath.php:51
|
621 |
+
msgid "XPath is required"
|
622 |
+
msgstr "XPath wird benötigt"
|
623 |
+
|
624 |
+
#: ../../actions/wp_ajax_nested_xpath.php:65 ../..
|
625 |
+
#: /actions/wp_ajax_parse_nested_file.php:159
|
626 |
+
msgid "Elements found"
|
627 |
+
msgstr "Elemente gefunden"
|
628 |
+
|
629 |
+
#: ../../actions/wp_ajax_nested_xpath.php:65 ../..
|
630 |
+
#: /actions/wp_ajax_parse_nested_file.php:159
|
631 |
+
msgid "Elements not found"
|
632 |
+
msgstr "Elemente nicht gefunden"
|
633 |
+
|
634 |
+
#: ../../actions/wp_ajax_test_images.php:32
|
635 |
+
#, php-format
|
636 |
+
msgid "Uploads folder `%s` is not writable."
|
637 |
+
msgstr "Upload Ordner %s muss beschreibbar sein"
|
638 |
+
|
639 |
+
#: ../../actions/wp_ajax_test_images.php:46
|
640 |
+
#, php-format
|
641 |
+
msgid "Use image name instead of URL `%s`."
|
642 |
+
msgstr "Benutzen Sie ein Bild anstatt einer URL '%s'"
|
643 |
+
|
644 |
+
#: ../../actions/wp_ajax_test_images.php:53
|
645 |
+
#, php-format
|
646 |
+
msgid "File `%s` isn't readable"
|
647 |
+
msgstr "Datei `%s` nicht lesbar"
|
648 |
+
|
649 |
+
#: ../../actions/wp_ajax_test_images.php:57
|
650 |
+
#, php-format
|
651 |
+
msgid "File `%s` doesn't exist"
|
652 |
+
msgstr "Datei `%s` existiert nicht"
|
653 |
+
|
654 |
+
#: ../../actions/wp_ajax_test_images.php:63
|
655 |
+
#, php-format
|
656 |
+
msgid "%d image was successfully retrieved from `%s`"
|
657 |
+
msgstr "%d Bild wurde erfolgreich erneuert von `%s`"
|
658 |
+
|
659 |
+
#: ../../actions/wp_ajax_test_images.php:67
|
660 |
+
#, php-format
|
661 |
+
msgid "%d images were successfully retrieved from `%s`"
|
662 |
+
msgstr "%d Bilder wurden erfolgreich erneuert von `%s`"
|
663 |
+
|
664 |
+
#: ../../actions/wp_ajax_test_images.php:120
|
665 |
+
#, php-format
|
666 |
+
msgid "URL `%s` is not valid."
|
667 |
+
msgstr "URL `%s` ist ungültig."
|
668 |
+
|
669 |
+
#: ../../actions/wp_ajax_test_images.php:132
|
670 |
+
#, php-format
|
671 |
+
msgid "File `%s` cannot be saved locally"
|
672 |
+
msgstr "Datei `%s` kann nicht lokal gespeichert werden"
|
673 |
+
|
674 |
+
#: ../../actions/wp_ajax_test_images.php:134
|
675 |
+
#, php-format
|
676 |
+
msgid "File `%s` is not a valid image."
|
677 |
+
msgstr "Datei `%s` ist kein zulässiges Bild"
|
678 |
+
|
679 |
+
#: ../../actions/wp_ajax_test_images.php:145
|
680 |
+
#, php-format
|
681 |
+
msgid "%d image was successfully downloaded in %s seconds"
|
682 |
+
msgstr "%d Bild wurde erfolgreich heruntergeladen in %s sekunden"
|
683 |
+
|
684 |
+
#: ../../actions/wp_ajax_test_images.php:149
|
685 |
+
#, php-format
|
686 |
+
msgid "%d images were successfully downloaded in %s seconds"
|
687 |
+
msgstr "%d Bilder wurden erfolgreich heruntergeladen in %s Sekunden"
|
688 |
+
|
689 |
+
#: ../../actions/wp_loaded.php:53
|
690 |
+
#, php-format
|
691 |
+
msgid "Other imports are currently in process [%s]."
|
692 |
+
msgstr "Zur Zeit sind andere Imports in Bearbeitung [%s]"
|
693 |
+
|
694 |
+
#: ../../actions/wp_loaded.php:63
|
695 |
+
#, php-format
|
696 |
+
msgid "Scheduling update is not working with \"upload\" import type. Import #%s."
|
697 |
+
msgstr "Planung von updates funktioniert nicht mit \"upload\" Importtyp. Import #%s."
|
698 |
+
|
699 |
+
#: ../../actions/wp_loaded.php:76 ../../actions/wp_loaded.php:148
|
700 |
+
#, php-format
|
701 |
+
msgid "Import #%s is currently in manually process. Request skipped."
|
702 |
+
msgstr "Import #%s ist zur Zeit im manuellen Prozess. Anfrage übersprungen."
|
703 |
+
|
704 |
+
#: ../../actions/wp_loaded.php:99 ../../views/admin/history/index.php:170
|
705 |
+
msgid "triggered by cron"
|
706 |
+
msgstr "Ausgelöst von cron"
|
707 |
+
|
708 |
+
#: ../../actions/wp_loaded.php:105
|
709 |
+
#, php-format
|
710 |
+
msgid "#%s Cron job triggered."
|
711 |
+
msgstr "#%s Cron Job ausgelöst"
|
712 |
+
|
713 |
+
#: ../../actions/wp_loaded.php:112
|
714 |
+
#, php-format
|
715 |
+
msgid "Import #%s currently in process. Request skipped."
|
716 |
+
msgstr "Import #%s ist zur Zeit in Prozess. Anfrage übersprungen."
|
717 |
+
|
718 |
+
#: ../../actions/wp_loaded.php:121
|
719 |
+
#, php-format
|
720 |
+
msgid "Import #%s already triggered. Request skipped."
|
721 |
+
msgstr "Import #%s bereits ausgelöst. Anfrage übersprungen."
|
722 |
+
|
723 |
+
#: ../../actions/wp_loaded.php:141
|
724 |
+
#, php-format
|
725 |
+
msgid "Import #%s is not triggered. Request skipped."
|
726 |
+
msgstr "Import #%s nicht ausgelöst. Anfrage übersprungen."
|
727 |
+
|
728 |
+
#: ../../actions/wp_loaded.php:177 ../../views/admin/history/index.php:167
|
729 |
+
msgid "cron processing"
|
730 |
+
msgstr "cron Bearbeitung"
|
731 |
+
|
732 |
+
#: ../../actions/wp_loaded.php:208 ../../models/import/record.php:515
|
733 |
+
#, php-format
|
734 |
+
msgid "Import #%s complete"
|
735 |
+
msgstr "Import #%s Fertiggestellt."
|
736 |
+
|
737 |
+
#: ../../actions/wp_loaded.php:217 ../../models/import/record.php:539
|
738 |
+
#, php-format
|
739 |
+
msgid "Records Processed %s. Records Count %s."
|
740 |
+
msgstr "Datensätze bearbeitet %s. Datensätze gezählt %s."
|
741 |
+
|
742 |
+
#: ../../actions/wp_loaded.php:229
|
743 |
+
#, php-format
|
744 |
+
msgid "Import #%s already processing. Request skipped."
|
745 |
+
msgstr "Import #%s bereits in Bearbeitung. Anfrage übersprungen."
|
746 |
+
|
747 |
+
#: ../../classes/api.php:113 ../../views/admin/import/template/_other_template. php:28
|
748 |
+
#: ../../views/admin/import/template/_other_template.php:77 ../..
|
749 |
+
#: /views/admin/import/template/_other_template.php:100
|
750 |
+
#: /views/admin/import/template/_other_template.php:167
|
751 |
+
#: /views/admin/import/template/_other_template.php:197
|
752 |
+
#: /views/admin/import/template/_other_template.php:225
|
753 |
+
#: /views/admin/import/template/_other_template.php:251
|
754 |
+
msgid "Set with XPath"
|
755 |
+
msgstr "Gesetzt mit XPath"
|
756 |
+
|
757 |
+
#: ../../classes/api.php:129 ../..
|
758 |
+
#: /views/admin/import/template/_custom_fields_template.php:57
|
759 |
+
#: /views/admin/import/template/_custom_fields_template.php:266
|
760 |
+
#: /views/admin/import/template/_custom_fields_template.php:400
|
761 |
+
msgid "Field Options..."
|
762 |
+
msgstr "Feld Optionen..."
|
763 |
+
|
764 |
+
#: ../../classes/api.php:132 ../..
|
765 |
+
#: /views/admin/import/template/_custom_fields_template.php:63
|
766 |
+
#: /views/admin/import/template/_custom_fields_template.php:272
|
767 |
+
#: /views/admin/import/template/_custom_fields_template.php:406
|
768 |
+
msgid "Mapping"
|
769 |
+
msgstr "Zuordnung"
|
770 |
+
|
771 |
+
#: ../../classes/api.php:141 ../..
|
772 |
+
#: /views/admin/import/template/_custom_fields_template.php:170
|
773 |
+
#: /views/admin/import/template/_custom_fields_template.php:338
|
774 |
+
#: /views/admin/import/template/_custom_fields_template.php:472
|
775 |
+
#: /views/admin/import/template/_taxonomies_template.php:233
|
776 |
+
msgid "In Your File"
|
777 |
+
msgstr "In Ihrer Datei"
|
778 |
+
|
779 |
+
#: ../../classes/api.php:142 ../..
|
780 |
+
#: /views/admin/import/template/_custom_fields_template.php:171
|
781 |
+
#: /views/admin/import/template/_custom_fields_template.php:339
|
782 |
+
#: /views/admin/import/template/_custom_fields_template.php:473
|
783 |
+
#: /views/admin/import/template/_taxonomies_template.php:234
|
784 |
+
msgid "Translated To"
|
785 |
+
msgstr "Übersetzt zu"
|
786 |
+
|
787 |
+
#: ../../classes/api.php:221 ../..
|
788 |
+
#: /views/admin/import/template/_custom_fields_template.php:144
|
789 |
+
#: /views/admin/import/template/_custom_fields_template.php:233
|
790 |
+
#: /views/admin/import/template/_custom_fields_template.php:312
|
791 |
+
#: /views/admin/import/template/_custom_fields_template.php:368
|
792 |
+
#: /views/admin/import/template/_custom_fields_template.php:446
|
793 |
+
#: /views/admin/import/template/_custom_fields_template.php:502
|
794 |
+
msgid "Add Another"
|
795 |
+
msgstr "Weitere Hinzufügen"
|
796 |
+
|
797 |
+
#: ../../classes/api.php:227 ../..
|
798 |
+
#: /views/admin/import/template/_custom_fields_template.php:239
|
799 |
+
#: /views/admin/import/template/_custom_fields_template.php:374
|
800 |
+
#: /views/admin/import/template/_custom_fields_template.php:508
|
801 |
+
msgid "Save Rules"
|
802 |
+
msgstr "Regel speichern"
|
803 |
+
|
804 |
+
#: ../../classes/api.php:258
|
805 |
+
msgid "Download image hosted elsewhere"
|
806 |
+
msgstr "Bilder von Host herunterladen"
|
807 |
+
|
808 |
+
#: ../../classes/api.php:259 ../../classes/api.php:279 ../..
|
809 |
+
#: /views/admin/import/template/_featured_template.php:16
|
810 |
+
#: /views/admin/import/template/_featured_template.php:26
|
811 |
+
msgid "http:// or https://"
|
812 |
+
msgstr "http:// oder https://"
|
813 |
+
|
814 |
+
#: ../../classes/api.php:264
|
815 |
+
#, php-format
|
816 |
+
msgid "Use image(s) currently uploaded in %s"
|
817 |
+
msgstr "Nutze Bild(er) die gerade hochgeladen werden in %s"
|
818 |
+
|
819 |
+
#: ../../classes/api.php:278
|
820 |
+
msgid "Download file hosted elsewhere"
|
821 |
+
msgstr "Datei von Host herunterladen"
|
822 |
+
|
823 |
+
#: ../../classes/api.php:284
|
824 |
+
#, php-format
|
825 |
+
msgid "Use file(s) currently uploaded in %s"
|
826 |
+
msgstr "Nutze Datei(en die gerade hochgeladen werden in %s"
|
827 |
+
|
828 |
+
#: ../../classes/api.php:397 ../../models/import/record.php:2302
|
829 |
+
#, php-format
|
830 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
831 |
+
msgstr "- Suche nach existierendem Bild `%s` im Verzeichnis `%s` "
|
832 |
+
|
833 |
+
#: ../../classes/api.php:404 ../../classes/api.php:477 ../../models/import/record.
|
834 |
+
#: php:2309 ../../models/import/record.php:2380 ../../models/import/record.php:2603
|
835 |
+
#, php-format
|
836 |
+
msgid "- <b>WARNING</b>: Can't detect attachment file type %s"
|
837 |
+
msgstr "- <b>WARNUNG</b>: Kann den Dateityp nicht erkennen %s"
|
838 |
+
|
839 |
+
#: ../../classes/api.php:410 ../../classes/api.php:482 ../../models/import/record.
|
840 |
+
#: php:2315 ../../models/import/record.php:2386
|
841 |
+
#, php-format
|
842 |
+
msgid "- File `%s` has been successfully found"
|
843 |
+
msgstr "- Datei `%s` wurde gefunden"
|
844 |
+
|
845 |
+
#: ../../classes/api.php:416 ../../classes/api.php:468 ../../models/import/record.
|
846 |
+
#: php:2225 ../../models/import/record.php:2321 ../../models/import/record.php:2370
|
847 |
+
#, php-format
|
848 |
+
msgid ""
|
849 |
+
"- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
|
850 |
+
msgstr ""
|
851 |
+
"- <b>WARNUNG</b>: Datei %s ist kein zulässiges Bild und kann nicht als Featured-Bild "
|
852 |
+
"gesetzt werden"
|
853 |
+
|
854 |
+
#: ../../classes/api.php:419 ../../models/import/record.php:2326
|
855 |
+
#, php-format
|
856 |
+
msgid "- Image `%s` has been successfully found"
|
857 |
+
msgstr "- Bild `%s` wurde gefunden"
|
858 |
+
|
859 |
+
#: ../../classes/api.php:429 ../../models/import/record.php:2333
|
860 |
+
#, php-format
|
861 |
+
msgid "- Downloading image from `%s`"
|
862 |
+
msgstr "- Bild wird Herunterladen von `%s`"
|
863 |
+
|
864 |
+
#: ../../classes/api.php:432
|
865 |
+
#, php-format
|
866 |
+
msgid "- Downloading file from `%s`"
|
867 |
+
msgstr "- Datei wird Herunterladen von `%s`"
|
868 |
+
|
869 |
+
#: ../../classes/api.php:444 ../../classes/api.php:472 ../../models/import/record.
|
870 |
+
#: php:2344 ../../models/import/record.php:2375
|
871 |
+
#, php-format
|
872 |
+
msgid "- Image `%s` has been successfully downloaded"
|
873 |
+
msgstr "- Bild `%s` wurde erfolgreich heruntergeladen"
|
874 |
+
|
875 |
+
#: ../../classes/api.php:450 ../../models/import/record.php:2350
|
876 |
+
#, php-format
|
877 |
+
msgid "- File `%s` has been successfully downloaded"
|
878 |
+
msgstr "- Datei `%s` wurde erfolgreich heruntergeladen"
|
879 |
+
|
880 |
+
#: ../../classes/api.php:462 ../../models/import/record.php:2363
|
881 |
+
#, php-format
|
882 |
+
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
883 |
+
msgstr "- <b>WARNUNG</b>: Datei %s kann lokal nicht gespeichert werden als %s"
|
884 |
+
|
885 |
+
#: ../../classes/api.php:496 ../../models/import/record.php:2405
|
886 |
+
#, php-format
|
887 |
+
msgid "- Creating an attachment for image `%s`"
|
888 |
+
msgstr "- Erstelle einen Anhang für Bild `%s`"
|
889 |
+
|
890 |
+
#: ../../classes/api.php:499
|
891 |
+
#, php-format
|
892 |
+
msgid "- Creating an attachment for file `%s`"
|
893 |
+
msgstr "- Erstelle einen Anhang für Datei `%s`"
|
894 |
+
|
895 |
+
#: ../../classes/api.php:518 ../../models/import/record.php:2427 ../..
|
896 |
+
#: /models/import/record.php:2625
|
897 |
+
msgid "- <b>WARNING</b>"
|
898 |
+
msgstr "- <b>WARNUNG</b>"
|
899 |
+
|
900 |
+
#: ../../classes/api.php:522 ../../models/import/record.php:2477
|
901 |
+
#, php-format
|
902 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
903 |
+
msgstr "- Anhang wurde erstellt für das Bild `%s`"
|
904 |
+
|
905 |
+
#: ../../classes/render.php:68 ../../classes/render.php:88 ../../classes/render.
|
906 |
+
#: php:166 ../../classes/render.php:186
|
907 |
+
#, php-format
|
908 |
+
msgid "<strong>%s</strong> %s more"
|
909 |
+
msgstr "<strong>%s</strong> %s mehr"
|
910 |
+
|
911 |
+
#: ../../classes/render.php:94 ../../classes/render.php:192
|
912 |
+
msgid "more"
|
913 |
+
msgstr "mehr"
|
914 |
+
|
915 |
+
#: ../../classes/updater.php:240
|
916 |
+
#, php-format
|
917 |
+
msgid ""
|
918 |
+
"There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" "
|
919 |
+
"href=\"%2$s\">View version %3$s details</a>."
|
920 |
+
msgstr ""
|
921 |
+
"Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" "
|
922 |
+
"href=\"%2$s\">Details ansehen von %3$s</a>."
|
923 |
+
|
924 |
+
#: ../../classes/updater.php:247
|
925 |
+
#, php-format
|
926 |
+
msgid ""
|
927 |
+
"There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" "
|
928 |
+
"href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
|
929 |
+
msgstr ""
|
930 |
+
"Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" "
|
931 |
+
"href=\"%2$s\">Details ansehen von %3$s</a> oder <a href=\"%4$s\">jetzt "
|
932 |
+
"aktualisieren</a>."
|
933 |
+
|
934 |
+
#: ../../classes/updater.php:435
|
935 |
+
msgid "You do not have permission to install plugin updates"
|
936 |
+
msgstr "Sie haben keine Berechtigung um Plug-In Aktualisierungen durchzuführen."
|
937 |
+
|
938 |
+
#: ../../classes/updater.php:435
|
939 |
+
msgid "Error"
|
940 |
+
msgstr "Fehler"
|
941 |
+
|
942 |
+
#: ../../classes/upload.php:46
|
943 |
+
msgid ""
|
944 |
+
"Please specify a file to import.<br/><br/>If you are uploading the file from your "
|
945 |
+
"computer, please wait for it to finish uploading (progress bar at 100%), before "
|
946 |
+
"trying to continue."
|
947 |
+
msgstr ""
|
948 |
+
"Bitte wählen Sie eine Datei für den Import.<br/><br/>Wenn Sie eine Datei von Ihrem "
|
949 |
+
"Computer hochladen, warten Sie bitte bis der Upload fertig ist (Fortschrittsbalken "
|
950 |
+
"bei 100% ) bevor Sie auf weiter klicken."
|
951 |
+
|
952 |
+
#: ../../classes/upload.php:48
|
953 |
+
msgid "Uploaded file is empty"
|
954 |
+
msgstr "Hochgeladene Datei ist leer."
|
955 |
+
|
956 |
+
#: ../../classes/upload.php:50 ../../controllers/admin/settings.php:459
|
957 |
+
msgid "Uploaded file must be XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT or PSV"
|
958 |
+
msgstr ""
|
959 |
+
"Hochgeladene Datei muss XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT oder PSV sein."
|
960 |
+
|
961 |
+
#: ../../classes/upload.php:57 ../../classes/upload.php:114 ../../classes/upload.
|
962 |
+
#: php:358 ../../classes/upload.php:399 ../../classes/upload.php:704 ../..
|
963 |
+
#: /classes/upload.php:745
|
964 |
+
msgid ""
|
965 |
+
"WP All Import couldn't find a file to import inside your ZIP.<br/><br/>Either the ."
|
966 |
+
"ZIP file is broken, or doesn't contain a file with an extension of XML, CSV, PSV, "
|
967 |
+
"DAT, or TXT. <br/>Please attempt to unzip your .ZIP file on your computer to ensure "
|
968 |
+
"it is a valid .ZIP file which can actually be unzipped, and that it contains a file "
|
969 |
+
"which WP All Import can import."
|
970 |
+
msgstr ""
|
971 |
+
"WP All Import kann in Ihrem ZIP keine importierbare Datei finden.<br/><br/>Entweder "
|
972 |
+
"ist die .ZIP beschädigt, oder sie enthält keinen Dateityp mit XML, CSV, PSV, DAT, or "
|
973 |
+
"TXT. <br/>Bitte versuchen Sie das .ZIP auf Ihrem Computer zu entpacken um sicher zu "
|
974 |
+
"gehen, dass es sich um ein gültiges .ZIP handelt. Und dass es eine von WP All Import "
|
975 |
+
"importierbare Datei enthält."
|
976 |
+
|
977 |
+
#: ../../classes/upload.php:94 ../../classes/upload.php:128 ../../classes/upload.
|
978 |
+
#: php:185 ../../classes/upload.php:379 ../../classes/upload.php:691 ../..
|
979 |
+
#: /classes/upload.php:725 ../../classes/upload.php:759 ../../classes/upload.php: 819
|
980 |
+
#: ../../classes/upload.php:846 ../../classes/upload.php:885 /classes/upload.php:909
|
981 |
+
#: ../../classes/upload.php:933
|
982 |
+
msgid "WP All Import can't access your WordPress uploads folder."
|
983 |
+
msgstr "WP All Import hat keinen Zugang zu Ihrem Wordpress Upload Verzeichnis."
|
984 |
+
|
985 |
+
#: ../../classes/upload.php:151 ../../classes/upload.php:252 ../../classes/upload.
|
986 |
+
#: php:436 ../../classes/upload.php:525 ../../classes/upload.php:627 ../..
|
987 |
+
#: /classes/upload.php:783 ../../classes/upload.php:872
|
988 |
+
msgid "Can not import this file. JSON to XML convertation failed."
|
989 |
+
msgstr "Kann die Datei nicht importieren. JSON zu XML Umwandlung fehlgeschlagen."
|
990 |
+
|
991 |
+
#: ../../classes/upload.php:327 ../../classes/upload.php:687
|
992 |
+
msgid "Please specify a file to import."
|
993 |
+
msgstr "Bitte wählen Sie eine Datei zum importieren"
|
994 |
+
|
995 |
+
#: ../../classes/upload.php:329
|
996 |
+
msgid ""
|
997 |
+
"The URL to your file is not valid.<br/><br/>Please make sure the URL starts with "
|
998 |
+
"http:// or https://. To import from https://, your server must have OpenSSL "
|
999 |
+
"installed."
|
1000 |
+
msgstr ""
|
1001 |
+
"Die URL zu Ihrer Datei ist nicht korrekt. <br/><br/>Bitte stellen Sie sicher, dass "
|
1002 |
+
"die URL mit http:// oder https:// beginnt. Um von https:// zu importieren, muss Ihr "
|
1003 |
+
"Server OpenSSL installiert haben."
|
1004 |
+
|
1005 |
+
#: ../../classes/upload.php:351
|
1006 |
+
msgid "Failed upload ZIP archive"
|
1007 |
+
msgstr "Fehler bei ZIP Upload"
|
1008 |
+
|
1009 |
+
#: ../../classes/upload.php:486 ../../classes/upload.php:590
|
1010 |
+
msgid ""
|
1011 |
+
"WP All Import was not able to download your file.<br/><br/>Please make sure the URL "
|
1012 |
+
"to your file is valid.<br/>You can test this by pasting it into your browser.<br/"
|
1013 |
+
">Other reasons for this error can include some server setting on your host "
|
1014 |
+
"restricting access to this particular URL or external URLs in general, or some "
|
1015 |
+
"setting on the server hosting the file you are trying to access preventing your "
|
1016 |
+
"server from accessing it."
|
1017 |
+
msgstr ""
|
1018 |
+
"WP All Import konnte Ihre Datei nicht herunterladen.<br/><br/>Bitte stellen Sie "
|
1019 |
+
"sicher dass die URL zu Ihrer Datei korrekt ist.<br/>Sie können das testen indem Sie "
|
1020 |
+
"die URL in Ihren Browser kopieren.<br/>Andere Gründe für diesen Fehler können "
|
1021 |
+
"Servereinstellungen sein, die den Zugriff auf diese URL oder generell auf externe "
|
1022 |
+
"URLs verhindern. Oder Einstellungen auf dem Server verhindern den Zugriff."
|
1023 |
+
|
1024 |
+
#: ../../controllers/admin/addons.php:21
|
1025 |
+
msgid "WooCommerce Addon"
|
1026 |
+
msgstr "WooCommerce Add-on"
|
1027 |
+
|
1028 |
+
#: ../../controllers/admin/addons.php:22 ../../controllers/admin/addons.php:76
|
1029 |
+
msgid "Import Products from any XML or CSV to WooCommerce"
|
1030 |
+
msgstr "Importiere Produkte von XML oder CSV in WooCommerce"
|
1031 |
+
|
1032 |
+
#: ../../controllers/admin/addons.php:32
|
1033 |
+
msgid "ACF Addon"
|
1034 |
+
msgstr "ACF Add-on"
|
1035 |
+
|
1036 |
+
#: ../../controllers/admin/addons.php:33
|
1037 |
+
msgid "Import to advanced custom fields"
|
1038 |
+
msgstr "Importiere in erweiterte benutzerdefinierte Felder"
|
1039 |
+
|
1040 |
+
#: ../../controllers/admin/addons.php:43
|
1041 |
+
msgid "WPML Addon"
|
1042 |
+
msgstr "WPML Add-on"
|
1043 |
+
|
1044 |
+
#: ../../controllers/admin/addons.php:44
|
1045 |
+
msgid "Import to WPML"
|
1046 |
+
msgstr "Importiere in WPML"
|
1047 |
+
|
1048 |
+
#: ../../controllers/admin/addons.php:54
|
1049 |
+
msgid "User Addon"
|
1050 |
+
msgstr "Benutzer Add-on"
|
1051 |
+
|
1052 |
+
#: ../../controllers/admin/addons.php:55
|
1053 |
+
msgid "Import Users"
|
1054 |
+
msgstr "Importiere Benutzer"
|
1055 |
+
|
1056 |
+
#: ../../controllers/admin/addons.php:65
|
1057 |
+
msgid "Link cloaking Addon"
|
1058 |
+
msgstr "Maskiere Link Add-on"
|
1059 |
+
|
1060 |
+
#: ../../controllers/admin/addons.php:66
|
1061 |
+
msgid "Affiliate link cloaking"
|
1062 |
+
msgstr "Maskiere Affiliate Link"
|
1063 |
+
|
1064 |
+
#: ../../controllers/admin/addons.php:75
|
1065 |
+
msgid "WooCommerce Addon - free edition"
|
1066 |
+
msgstr "WooCommerce Add-on - Freie Version"
|
1067 |
+
|
1068 |
+
#: ../../controllers/admin/addons.php:84
|
1069 |
+
msgid "WooCommerce Tabs Addon"
|
1070 |
+
msgstr "WooCommerce Tab Add-on"
|
1071 |
+
|
1072 |
+
#: ../../controllers/admin/addons.php:85
|
1073 |
+
msgid "Import data to WooCommerce tabs"
|
1074 |
+
msgstr "Importiere Daten in WooCommerce Tabs"
|
1075 |
+
|
1076 |
+
#: ../../controllers/admin/history.php:31
|
1077 |
+
msgid "Import is not specified."
|
1078 |
+
msgstr "Import nicht spezifiziert"
|
1079 |
+
|
1080 |
+
#: ../../controllers/admin/history.php:57 ../../controllers/admin/manage.php:60
|
1081 |
+
msgid "«"
|
1082 |
+
msgstr "«"
|
1083 |
+
|
1084 |
+
#: ../../controllers/admin/history.php:58 ../../controllers/admin/manage.php:61
|
1085 |
+
msgid "»"
|
1086 |
+
msgstr "»"
|
1087 |
+
|
1088 |
+
#: ../../controllers/admin/history.php:92
|
1089 |
+
msgid "Log file does not exists."
|
1090 |
+
msgstr "Log Datei existiert nicht."
|
1091 |
+
|
1092 |
+
#: ../../controllers/admin/history.php:112
|
1093 |
+
msgid "History deleted"
|
1094 |
+
msgstr "Chronik gelöscht"
|
1095 |
+
|
1096 |
+
#: ../../controllers/admin/history.php:139 ../../controllers/admin/manage.php:634
|
1097 |
+
#, php-format
|
1098 |
+
msgid "%d %s deleted"
|
1099 |
+
msgstr "%d %s gelöscht"
|
1100 |
+
|
1101 |
+
#: ../../controllers/admin/import.php:75
|
1102 |
+
msgid ""
|
1103 |
+
"WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies "
|
1104 |
+
"or maybe it is just a temporary issue on your or your web host's end.<br/>If you "
|
1105 |
+
"can't do an import without seeing this error, change your session settings on the "
|
1106 |
+
"All Import -> Settings page."
|
1107 |
+
msgstr ""
|
1108 |
+
"WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre Cookies "
|
1109 |
+
"gelöscht oder es handelt sich um einen vorübergehenden Fehler bei Ihnen oder Ihrem "
|
1110 |
+
"Webspace Dienstanbieter.<br/>Wenn Sie einen Import durchführen können ohne diesen "
|
1111 |
+
"Fehler zu sehen, dann ändern Sie die Einstellung Ihrer Sitzung unter All Import -> "
|
1112 |
+
"Einstellungen"
|
1113 |
+
|
1114 |
+
#: ../../controllers/admin/import.php:92 ../../controllers/admin/import.php:655
|
1115 |
+
msgid ""
|
1116 |
+
"There are no elements to import based on your XPath.<br/><br/>If you are in Step 2, "
|
1117 |
+
"you probably specified filtering options that don’t match any elements present in "
|
1118 |
+
"your file.<br/>If you are seeing this error elsewhere, it means that while the XPath "
|
1119 |
+
"expression for your initial import matched some elements in your file previously, "
|
1120 |
+
"there are now zero elements in the file that match this expression.<br/>You can edit "
|
1121 |
+
"the XPath for your import by going to the Manage Imports -> Import Settings page."
|
1122 |
+
msgstr ""
|
1123 |
+
"Keine Elemente für den Import auf Ihrem XPath.<br/><br/>Wenn Sie bei Schritt 2 sind, "
|
1124 |
+
"haben Sie eventuell Filteroptionen eingestellt, die zu keinen Elementen in Ihrer "
|
1125 |
+
"Datei passen.<br/>Wenn Sie diesen Fehler anderswo sehen, bedeutet das, dass der "
|
1126 |
+
"XPath von Ihrem initialen Import mit Elementen Ihrer vorherigen Datei übereinstimmt. "
|
1127 |
+
"Jetzt sind Null Elemente in der Datei die mit diesem XPath übereinstimmen. <br/>Sie "
|
1128 |
+
"können den XPath für Ihren Import ändern unter Imports verwalten -> Import "
|
1129 |
+
"Einstellungen"
|
1130 |
+
|
1131 |
+
#: ../../controllers/admin/import.php:150
|
1132 |
+
msgid "The import associated with this export has been deleted."
|
1133 |
+
msgstr "Der Import in Zusammenhang mit diesem Export wurde gelöscht."
|
1134 |
+
|
1135 |
+
#: ../../controllers/admin/import.php:150
|
1136 |
+
msgid ""
|
1137 |
+
"Please re-run your export by clicking Run Export on the All Export -> Manage Exports "
|
1138 |
+
"page. Then try your import again."
|
1139 |
+
msgstr ""
|
1140 |
+
"Bitte starten Sie Ihren Export erneut durch klicken auf Export ausführen unter All "
|
1141 |
+
"Export -> Exports verwalten. Dann versuchen Sie den Import erneut."
|
1142 |
+
|
1143 |
+
#: ../../controllers/admin/import.php:155
|
1144 |
+
msgid "This import has been deleted."
|
1145 |
+
msgstr "Dieser Import wurde gelöscht."
|
1146 |
+
|
1147 |
+
#: ../../controllers/admin/import.php:167
|
1148 |
+
msgid ""
|
1149 |
+
"Required PHP components are missing.<br/><br/>WP All Import requires DOMDocument, "
|
1150 |
+
"XMLReader, and XMLWriter PHP modules to be installed.<br/>These are standard "
|
1151 |
+
"features of PHP, and are necessary for WP All Import to read the files you are "
|
1152 |
+
"trying to import.<br/>Please contact your web hosting provider and ask them to "
|
1153 |
+
"install and activate the DOMDocument, XMLReader, and XMLWriter PHP modules."
|
1154 |
+
msgstr ""
|
1155 |
+
"Benötigte PHP Komponenten fehlen.<br/><br/>WP All Import benötigt DOMDocument, "
|
1156 |
+
"XMLReader und XMLWriter PHP Module.<br/>Diese sind Standard Merkmale von PHP und "
|
1157 |
+
"werden von WP All Import benötigt um die Dateien zu lesen die Sie importieren wollen."
|
1158 |
+
"<br/>Bitte kontaktieren Sie Ihren Webhosting Anbieter und fragen Sie nach der "
|
1159 |
+
"Installation und Aktivierung von DOMDocument, XMLReader und XMLWriter PHP Module."
|
1160 |
+
|
1161 |
+
#: ../../controllers/admin/import.php:242
|
1162 |
+
msgid "Select an item type to import the data"
|
1163 |
+
msgstr "Wählen Sie einen Produkttyp um die Daten zu importieren."
|
1164 |
+
|
1165 |
+
#: ../../controllers/admin/import.php:246
|
1166 |
+
msgid "Previous import for update must be selected to proceed with a new one"
|
1167 |
+
msgstr ""
|
1168 |
+
"Um vorherige Imports zu aktualisieren, müssen diese mit neuen selektiert werden."
|
1169 |
+
|
1170 |
+
#: ../../controllers/admin/import.php:289
|
1171 |
+
msgid "File is no longer in the correct format"
|
1172 |
+
msgstr "Datei ist nicht mehr im korrekten Format."
|
1173 |
+
|
1174 |
+
#: ../../controllers/admin/import.php:292 ../../controllers/admin/import.php:323
|
1175 |
+
msgid ""
|
1176 |
+
"Certain columns are required to be present in your file to enable it to be re-"
|
1177 |
+
"imported with WP All Import. These columns are missing. Re-export your file using WP "
|
1178 |
+
"All Export, and don't delete any of the columns when editing it. Then, re-import "
|
1179 |
+
"will work correctly."
|
1180 |
+
msgstr ""
|
1181 |
+
"Bestimmte Spalten werden benötigt um erneut importiert werden zu können mit WP All "
|
1182 |
+
"Import. Diese Spalten fehlen. Exportieren Sie Ihre Datei erneut mit WP All Export. "
|
1183 |
+
"Löschen Sie dabei keine Spalte, dann wird der erneute Import korrekt funktionieren."
|
1184 |
+
|
1185 |
+
#: ../../controllers/admin/import.php:295
|
1186 |
+
msgid ""
|
1187 |
+
"The import template you are using requires User Import Add-On.<br/><a href=\"http://"
|
1188 |
+
"www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-"
|
1189 |
+
"import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase "
|
1190 |
+
"the User Import Add-On</a>"
|
1191 |
+
msgstr ""
|
1192 |
+
"Die Import Vorlage die Sie benutzen, benötigt das Benutzer Import Add-on.<br/><a "
|
1193 |
+
"href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
|
1194 |
+
"org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target="
|
1195 |
+
"\"_blank\">User Import Add-on kaufen</a>"
|
1196 |
+
|
1197 |
+
#: ../../controllers/admin/import.php:358
|
1198 |
+
msgid "Unable to download feed resource."
|
1199 |
+
msgstr "Herunterladen des Feeds nicht möglich."
|
1200 |
+
|
1201 |
+
#: ../../controllers/admin/import.php:433 ../../controllers/admin/import.php:457 .
|
1202 |
+
#: ../controllers/admin/settings.php:644
|
1203 |
+
msgid ""
|
1204 |
+
"Please confirm you are importing a valid feed.<br/> Often, feed providers distribute "
|
1205 |
+
"feeds with invalid data, improperly wrapped HTML, line breaks where they should not "
|
1206 |
+
"be, faulty character encodings, syntax errors in the XML, and other issues.<br/><br/"
|
1207 |
+
">WP All Import has checks in place to automatically fix some of the most common "
|
1208 |
+
"problems, but we can’t catch every single one.<br/><br/>It is also possible that "
|
1209 |
+
"there is a bug in WP All Import, and the problem is not with the feed.<br/><br/>If "
|
1210 |
+
"you need assistance, please contact support – <a href=\"mailto:support@wpallimport."
|
1211 |
+
"com\">support@wpallimport.com</a> – with your XML/CSV file. We will identify the "
|
1212 |
+
"problem and release a bug fix if necessary."
|
1213 |
+
msgstr ""
|
1214 |
+
"Bitte bestätigen: Sie importieren einen gültigen Feed.<br/> Oftmals enthalten Feeds "
|
1215 |
+
"von Anbietern falsche Daten wie, unpassend eingepacktes HTML, neue Zeile wo sie "
|
1216 |
+
"nicht sein soll, falsche Buchstaben Codierung, Syntax Fehler in der XML und andere "
|
1217 |
+
"Probleme.<br/><br/>WP All Import hat Kontrollen die automatisch einige der "
|
1218 |
+
"häufigsten Probleme beheben, aber wir können nicht jeden finden.<br/><br/>Es ist "
|
1219 |
+
"auch Möglich dass ein Fehler in WP All Import ist und das Problem nicht am Feed "
|
1220 |
+
"liegt.<br/><br/>Wenn Sie Hilfe brauchen, kontaktieren Sie bitte den Support – <a "
|
1221 |
+
"href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> - mit Ihrer XML/"
|
1222 |
+
"CSV Datei. Wir werden das Problem finden und eine Behebung des Fehlers herausgeben "
|
1223 |
+
"falls das nötig ist."
|
1224 |
+
|
1225 |
+
#: ../../controllers/admin/import.php:452
|
1226 |
+
msgid ""
|
1227 |
+
"WP All Import unable to detect file type.<br/><br/>WP All Import not able to "
|
1228 |
+
"determine what type of file you are importing. Make sure your file extension is "
|
1229 |
+
"correct for the file type you are importing.<br/> Please choose the correct file "
|
1230 |
+
"type from the dropdown below, or try adding &type=xml or &type=csv to the end of the "
|
1231 |
+
"URL, for example http://example.com/export-products.php?&type=xml"
|
1232 |
+
msgstr ""
|
1233 |
+
"WP All Import kann den Dateityp nicht feststellen.<br/><br/>WP All Import kann den "
|
1234 |
+
"Typ Ihrer Importdatei nicht bestimmen. Stellen Sie sicher, dass die Dateiendung der "
|
1235 |
+
"zu importierenden Datei korrekt ist.<br/>Bitte wählen Sie einen korrekten Dateityp "
|
1236 |
+
"von der Dropdown-Liste unterhalb. Oder versuchen Sie &type=xml oder &type=csv an das "
|
1237 |
+
"Ende der URL anzufügen. Beispiel: http://example.com/export-products.php?&type=xml"
|
1238 |
+
|
1239 |
+
#: ../../controllers/admin/import.php:485
|
1240 |
+
msgid "No elements selected"
|
1241 |
+
msgstr "Keine Elemente gewählt"
|
1242 |
+
|
1243 |
+
#: ../../controllers/admin/import.php:490 ../../controllers/admin/import.php:716
|
1244 |
+
msgid ""
|
1245 |
+
"Your XPath is not valid.<br/><br/>Click \"get default XPath\" to get the default "
|
1246 |
+
"XPath."
|
1247 |
+
msgstr ""
|
1248 |
+
"Ihr XPath ist nicht korrekt. <br/><br/>Klicken Sie auf \"Hole Standard XPath\" um "
|
1249 |
+
"den Standard XPath zu erhalten."
|
1250 |
+
|
1251 |
+
#: ../../controllers/admin/import.php:494 ../../controllers/admin/import.php:722
|
1252 |
+
msgid "XPath must match only elements"
|
1253 |
+
msgstr "XPath muss Elementen entsprechen"
|
1254 |
+
|
1255 |
+
#: ../../controllers/admin/import.php:524
|
1256 |
+
msgid ""
|
1257 |
+
"Warning: No matching elements found for XPath expression from the import being "
|
1258 |
+
"updated. It probably means that new XML file has different format. Though you can "
|
1259 |
+
"update XPath, procceed only if you sure about update operation being valid."
|
1260 |
+
msgstr ""
|
1261 |
+
"Warnung: Keine passenden Elemente für diesen XPath gefunden von dem Import der "
|
1262 |
+
"aktualisiert wird. Das bedeutet eventuell, dass die XML Datei ein anderes Format "
|
1263 |
+
"hat. Obwohl Sie XPath aktualisieren können, sollten Sie das nur ausführen wenn Sie "
|
1264 |
+
"sicher sind dass die Aktualisierung zulässig ist. "
|
1265 |
+
|
1266 |
+
#: ../../controllers/admin/import.php:566 ../../controllers/admin/import.php:709
|
1267 |
+
msgid ""
|
1268 |
+
"Your XPath is empty.<br/><br/>Please enter an XPath expression, or click \"get "
|
1269 |
+
"default XPath\" to get the default XPath."
|
1270 |
+
msgstr ""
|
1271 |
+
"Ihr XPath is leer.<br/><br/>Bitte geben Sie einen XPath Ausdruck ein, oder klicken "
|
1272 |
+
"Sie auf \"Hole Standard XPath\" um den Standard XPath zu erhalten."
|
1273 |
+
|
1274 |
+
#: ../../controllers/admin/import.php:718
|
1275 |
+
msgid "No matching variations found for XPath specified"
|
1276 |
+
msgstr "Keine passenden Varianten für den XPath gefunden"
|
1277 |
+
|
1278 |
+
#: ../../controllers/admin/import.php:959 ../../controllers/admin/import.php:975 .
|
1279 |
+
#: ../controllers/admin/import.php:1105
|
1280 |
+
msgid ""
|
1281 |
+
"WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies "
|
1282 |
+
"or maybe it is just a temporary issue on your web host's end.<br/>If you can't do an "
|
1283 |
+
"import without seeing this error, change your session settings on the All Import -> "
|
1284 |
+
"Settings page."
|
1285 |
+
msgstr ""
|
1286 |
+
"WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre Cookies "
|
1287 |
+
"gelöscht oder es handelt sich um einen vorübergehenden Fehler bei Ihnen oder Ihrem "
|
1288 |
+
"Dienstanbieter.<br/>Wenn Sie einen Import durchführen können ohne diesen Fehler zu "
|
1289 |
+
"sehen, ändern Sie Ihre Einstellungen unter All Import -> Einstellungen."
|
1290 |
+
|
1291 |
+
#: ../../controllers/admin/import.php:961
|
1292 |
+
msgid "<strong>Warning</strong>: your title is blank."
|
1293 |
+
msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
|
1294 |
+
|
1295 |
+
#: ../../controllers/admin/import.php:966
|
1296 |
+
msgid "<strong>Warning</strong>: resulting post title is empty"
|
1297 |
+
msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
|
1298 |
+
|
1299 |
+
#: ../../controllers/admin/import.php:971
|
1300 |
+
#, php-format
|
1301 |
+
msgid "Error parsing title: %s"
|
1302 |
+
msgstr "Fehler beim Parsen des Titel: %s"
|
1303 |
+
|
1304 |
+
#: ../../controllers/admin/import.php:977
|
1305 |
+
msgid "<strong>Warning</strong>: your content is blank."
|
1306 |
+
msgstr "<strong>Warnung:</strong>: Ihr Inhalt ist leer."
|
1307 |
+
|
1308 |
+
#: ../../controllers/admin/import.php:982
|
1309 |
+
msgid "<strong>Warning</strong>: resulting post content is empty"
|
1310 |
+
msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
|
1311 |
+
|
1312 |
+
#: ../../controllers/admin/import.php:987
|
1313 |
+
#, php-format
|
1314 |
+
msgid "Error parsing content: %s"
|
1315 |
+
msgstr "Fehler beim Parsen des Inhalts: %s"
|
1316 |
+
|
1317 |
+
#: ../../controllers/admin/import.php:1125 ../../controllers/admin/import.php: 1280
|
1318 |
+
#: ../../controllers/admin/import.php:1412
|
1319 |
+
#, php-format
|
1320 |
+
msgid "Error parsing: %s"
|
1321 |
+
msgstr "Fehler beim Parsen: %s"
|
1322 |
+
|
1323 |
+
#: ../../controllers/admin/import.php:1236 ../../controllers/admin/import.php:1391
|
1324 |
+
msgid "Error parsing: String could not be parsed as XML"
|
1325 |
+
msgstr "Fehler beim Parsen: String kann nicht als XML geparst werden."
|
1326 |
+
|
1327 |
+
#: ../../controllers/admin/import.php:1277 ../../controllers/admin/import.php:1409
|
1328 |
+
msgid "There is no data to preview"
|
1329 |
+
msgstr "Keine Daten zur Vorschau"
|
1330 |
+
|
1331 |
+
#: ../../controllers/admin/import.php:1514 ../../views/admin/import/template.php:67
|
1332 |
+
msgid "Excerpt"
|
1333 |
+
msgstr "Ausschnitt"
|
1334 |
+
|
1335 |
+
#: ../../controllers/admin/import.php:1518 ../../controllers/admin/import.php: 1522
|
1336 |
+
#: ../../models/import/record.php:1186 ../../views/admin/import/template.php: 112
|
1337 |
+
#: ../../views/admin/import/options/_reimport_options.php:135
|
1338 |
+
msgid "Images"
|
1339 |
+
msgstr "Bilder"
|
1340 |
+
|
1341 |
+
#: ../../controllers/admin/import.php:1540
|
1342 |
+
msgid "Both name and value must be set for all custom parameters"
|
1343 |
+
msgstr "Name und Wert müssen für alle Merkmale gesetzt sein."
|
1344 |
+
|
1345 |
+
#: ../../controllers/admin/import.php:1543
|
1346 |
+
msgid "Custom Field Name"
|
1347 |
+
msgstr "Name individuelles Feld"
|
1348 |
+
|
1349 |
+
#: ../../controllers/admin/import.php:1547
|
1350 |
+
msgid "Custom Field Value"
|
1351 |
+
msgstr "Wert individuelles Feld"
|
1352 |
+
|
1353 |
+
#: ../../controllers/admin/import.php:1560
|
1354 |
+
msgid "Both name and value must be set for all woocommerce attributes"
|
1355 |
+
msgstr "Name und Wert müssen für alle WooCommerce Merkmale gesetzt sein."
|
1356 |
+
|
1357 |
+
#: ../../controllers/admin/import.php:1563
|
1358 |
+
msgid "Attribute Field Name"
|
1359 |
+
msgstr "Name Merkmalfeld"
|
1360 |
+
|
1361 |
+
#: ../../controllers/admin/import.php:1566
|
1362 |
+
msgid "Attribute Field Value"
|
1363 |
+
msgstr "Wert Merkmalfeld"
|
1364 |
+
|
1365 |
+
#: ../../controllers/admin/import.php:1577
|
1366 |
+
msgid "Tags"
|
1367 |
+
msgstr "Tags"
|
1368 |
+
|
1369 |
+
#: ../../controllers/admin/import.php:1580 ../../views/admin/history/index.php:33
|
1370 |
+
msgid "Date"
|
1371 |
+
msgstr "Datum"
|
1372 |
+
|
1373 |
+
#: ../../controllers/admin/import.php:1582 ../../controllers/admin/import.php:1583
|
1374 |
+
msgid "Start Date"
|
1375 |
+
msgstr "Start Datum"
|
1376 |
+
|
1377 |
+
#: ../../controllers/admin/import.php:1617
|
1378 |
+
msgid "Template updated"
|
1379 |
+
msgstr "Vorlage aktualisiert"
|
1380 |
+
|
1381 |
+
#: ../../controllers/admin/import.php:1699
|
1382 |
+
#, php-format
|
1383 |
+
msgid "%s template is invalid: %s"
|
1384 |
+
msgstr "%s Vorlage ist ungültig: %s"
|
1385 |
+
|
1386 |
+
#: ../../controllers/admin/import.php:1802
|
1387 |
+
msgid ""
|
1388 |
+
"Records to import must be specified or uncheck `Import only specified records` "
|
1389 |
+
"option to process all records"
|
1390 |
+
msgstr ""
|
1391 |
+
"Zu importierende Datensätze müssen ausgewählt werden, oder entfernen Sie die "
|
1392 |
+
"Markierung bei `Nur ausgewählte Datensätze importieren` um alle Datensätze zu "
|
1393 |
+
"verarbeiten."
|
1394 |
+
|
1395 |
+
#: ../../controllers/admin/import.php:1807
|
1396 |
+
msgid "Wrong format of `Import only specified records` value"
|
1397 |
+
msgstr "Falsches Format bei `Nur ausgewählte Datensätze importieren`"
|
1398 |
+
|
1399 |
+
#: ../../controllers/admin/import.php:1810
|
1400 |
+
msgid ""
|
1401 |
+
"One of the numbers in `Import only specified records` value exceeds record quantity "
|
1402 |
+
"in XML file"
|
1403 |
+
msgstr ""
|
1404 |
+
"Eine der Nummern in `Nur ausgewählte Datensätze importieren` übersteigt die "
|
1405 |
+
"Datensatz Anzahl in der XML"
|
1406 |
+
|
1407 |
+
#: ../../controllers/admin/import.php:1817
|
1408 |
+
msgid ""
|
1409 |
+
"Expression for `Post Unique Key` must be set, use the same expression as specified "
|
1410 |
+
"for post title if you are not sure what to put there"
|
1411 |
+
msgstr ""
|
1412 |
+
"Ausdruck für `Sende einzigartige ID` muss gesetzt sein. Nutzen Sie den selben "
|
1413 |
+
"Ausdruck den Sie für den post Titel gewählt haben, wenn Sie nicht sicher sind."
|
1414 |
+
|
1415 |
+
#: ../../controllers/admin/import.php:1819
|
1416 |
+
msgid "Post Unique Key"
|
1417 |
+
msgstr "Sende einzigartige ID"
|
1418 |
+
|
1419 |
+
#: ../../controllers/admin/import.php:1823
|
1420 |
+
msgid "Custom field name must be specified."
|
1421 |
+
msgstr "Name vom individuellen Feld muss angegeben werden."
|
1422 |
+
|
1423 |
+
#: ../../controllers/admin/import.php:1825
|
1424 |
+
msgid "Custom field value must be specified."
|
1425 |
+
msgstr "Wert vom individuellen Feld muss angegeben werden."
|
1426 |
+
|
1427 |
+
#: ../../controllers/admin/import.php:1906
|
1428 |
+
msgid "WP All Import doesn't support this import type."
|
1429 |
+
msgstr "WP All Import unterstützt diesen Import Typ nicht."
|
1430 |
+
|
1431 |
+
#: ../../controllers/admin/import.php:1950
|
1432 |
+
msgid ""
|
1433 |
+
"<strong>Warning:</strong> this file does not have the same structure as the last "
|
1434 |
+
"file associated with this import. WP All Import won't be able to import this file "
|
1435 |
+
"with your current settings. Probably you'll need to adjust your XPath in the "
|
1436 |
+
"\"Configure Advanced Settings\" box below, and reconfigure your import by clicking "
|
1437 |
+
"\"Edit\" on the Manage Imports page."
|
1438 |
+
msgstr ""
|
1439 |
+
"<strong>Warnung:</strong>diese Datei hat nicht die gleiche Struktur wie die letzte "
|
1440 |
+
"Datei die mit diesem Import durchgeführt wurde. WP All Import wird die Datei mit den "
|
1441 |
+
"gegenwärtigen Einstellungen nicht importieren können. Möglicherweise müssen Sie "
|
1442 |
+
"Ihren XPath umstellen in \" Konfiguriere erweiterte Einstellungen\" und ändern ihn "
|
1443 |
+
"durch klicken auf \"Bearbeiten\" auf der Imports verwalten Seite."
|
1444 |
+
|
1445 |
+
#: ../../controllers/admin/import.php:1995
|
1446 |
+
msgid "Root element not found for uploaded feed."
|
1447 |
+
msgstr "Wurzelelement nicht gefunden für den hochgeladenen Feed."
|
1448 |
+
|
1449 |
+
#: ../../controllers/admin/import.php:2047
|
1450 |
+
msgid "Import updated"
|
1451 |
+
msgstr "Import aktualisiert"
|
1452 |
+
|
1453 |
+
#: ../../controllers/admin/import.php:2047
|
1454 |
+
msgid "Import created"
|
1455 |
+
msgstr "Import erstellt"
|
1456 |
+
|
1457 |
+
#: ../../controllers/admin/import.php:2149
|
1458 |
+
msgid "Configuration updated"
|
1459 |
+
msgstr "Konfiguration aktualisiert"
|
1460 |
+
|
1461 |
+
#: ../../controllers/admin/import.php:2321 ../../controllers/admin/import.php: 2604
|
1462 |
+
#: ../../controllers/admin/import.php:2732
|
1463 |
+
#, php-format
|
1464 |
+
msgid "%d %ss created %d updated %d deleted %d skipped"
|
1465 |
+
msgstr "%d %ss erstellt %d aktualisiert %d gelöscht %d übersprungen"
|
1466 |
+
|
1467 |
+
#: ../../controllers/admin/import.php:2739
|
1468 |
+
msgid "Canceled"
|
1469 |
+
msgstr "Abgebrochen"
|
1470 |
+
|
1471 |
+
#: ../../controllers/admin/import.php:2739
|
1472 |
+
msgid "Complete"
|
1473 |
+
msgstr "Fertiggestellt"
|
1474 |
+
|
1475 |
+
#: ../../controllers/admin/license.php:43
|
1476 |
+
msgid "Licenses saved"
|
1477 |
+
msgstr "Lizenz gespeichert"
|
1478 |
+
|
1479 |
+
#: ../../controllers/admin/manage.php:298 ../../views/admin/manage/index.php:272
|
1480 |
+
msgid "Import canceled"
|
1481 |
+
msgstr "Import abgebrochen "
|
1482 |
+
|
1483 |
+
#: ../../controllers/admin/manage.php:363
|
1484 |
+
msgid ""
|
1485 |
+
"This import appears to be using FTP. Unfortunately WP All Import no longer supports "
|
1486 |
+
"the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com"
|
1487 |
+
"\">support@wpallimport.com</a> if you have any questions."
|
1488 |
+
msgstr ""
|
1489 |
+
"Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das FTP "
|
1490 |
+
"Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:support@wpallimport.com"
|
1491 |
+
"\">support@wpallimport.com</a> wenn Sie fragen haben."
|
1492 |
+
|
1493 |
+
#: ../../controllers/admin/manage.php:459
|
1494 |
+
msgid "No matching elements found for Root element and XPath expression specified"
|
1495 |
+
msgstr ""
|
1496 |
+
"Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck gefunden"
|
1497 |
+
|
1498 |
+
#: ../../controllers/admin/manage.php:555
|
1499 |
+
msgid "File does not exists."
|
1500 |
+
msgstr "Datei existiert nicht"
|
1501 |
+
|
1502 |
+
#: ../../controllers/admin/settings.php:60
|
1503 |
+
msgid "History File Count must be a non-negative integer"
|
1504 |
+
msgstr "Zählung der Datei Chronik muss ein nicht negativer integer sein"
|
1505 |
+
|
1506 |
+
#: ../../controllers/admin/settings.php:63
|
1507 |
+
msgid "History Age must be a non-negative integer"
|
1508 |
+
msgstr "Chronik alter muss ein nicht negativer integer sein."
|
1509 |
+
|
1510 |
+
#: ../../controllers/admin/settings.php:83
|
1511 |
+
msgid "Settings saved"
|
1512 |
+
msgstr "Einstellungen gespeichert"
|
1513 |
+
|
1514 |
+
#: ../../controllers/admin/settings.php:114
|
1515 |
+
msgid "Unknown File extension. Only txt files are permitted"
|
1516 |
+
msgstr "Unbekannte Dateiendung. Nur txt Dateien sind erlaubt"
|
1517 |
+
|
1518 |
+
#: ../../controllers/admin/settings.php:129
|
1519 |
+
msgid "Wrong imported data format"
|
1520 |
+
msgstr "Falsches Import Dateiformat"
|
1521 |
+
|
1522 |
+
#: ../../controllers/admin/settings.php:131
|
1523 |
+
msgid "File is empty or doesn't exests"
|
1524 |
+
msgstr "Datei ist leer oder existiert nicht"
|
1525 |
+
|
1526 |
+
#: ../../controllers/admin/settings.php:134
|
1527 |
+
msgid "Undefined entry!"
|
1528 |
+
msgstr "Undefinierter Eintrag"
|
1529 |
+
|
1530 |
+
#: ../../controllers/admin/settings.php:136
|
1531 |
+
msgid "Please select file."
|
1532 |
+
msgstr "Bitte wählen Sie eine Datei"
|
1533 |
+
|
1534 |
+
#: ../../controllers/admin/settings.php:142
|
1535 |
+
msgid "Templates must be selected"
|
1536 |
+
msgstr "Vorlagen müssen gewählt sein"
|
1537 |
+
|
1538 |
+
#: ../../controllers/admin/settings.php:279
|
1539 |
+
msgid "Files not found"
|
1540 |
+
msgstr "Dateien nicht gefunden"
|
1541 |
+
|
1542 |
+
#: ../../controllers/admin/settings.php:287
|
1543 |
+
msgid "Clean Up has been successfully completed."
|
1544 |
+
msgstr "Aufräumarbeiten erfolgreich beendet."
|
1545 |
+
|
1546 |
+
#: ../../controllers/admin/settings.php:438
|
1547 |
+
msgid "Uploads folder is not writable."
|
1548 |
+
msgstr "Upload Verzeichnis ist nicht beschreibbar."
|
1549 |
+
|
1550 |
+
#: ../../controllers/admin/settings.php:495
|
1551 |
+
msgid "Failed to open temp directory."
|
1552 |
+
msgstr "Fehler bei öffnen des temp Verzeichnisses."
|
1553 |
+
|
1554 |
+
#: ../../controllers/admin/settings.php:520 ../../controllers/admin/settings.php: 545
|
1555 |
+
msgid "Failed to open input stream."
|
1556 |
+
msgstr "Fehler bei öffnen des Input streams."
|
1557 |
+
|
1558 |
+
#: ../../controllers/admin/settings.php:527 ../../controllers/admin/settings.php: 552
|
1559 |
+
msgid "Failed to open output stream."
|
1560 |
+
msgstr "Fehler bei öffnen des Output streams."
|
1561 |
+
|
1562 |
+
#: ../../controllers/admin/settings.php:531
|
1563 |
+
msgid "Failed to move uploaded file."
|
1564 |
+
msgstr "Fehler bei verschieben der hochgeladenen Datei."
|
1565 |
+
|
1566 |
+
#: ../../helpers/import_custom_meta_box.php:25
|
1567 |
+
msgid ""
|
1568 |
+
"Custom fields can be used to add extra metadata to a post that you can <a href="
|
1569 |
+
"\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">use in your "
|
1570 |
+
"theme</a>."
|
1571 |
+
msgstr ""
|
1572 |
+
"Individuelle Felder können genutzt werden um zusätzliche Daten in einen Post "
|
1573 |
+
"einzufügen. Sie können <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" "
|
1574 |
+
"target=\"_blank\">sie in Ihrem Theme nutzen</a>."
|
1575 |
+
|
1576 |
+
#: ../../helpers/reverse_taxonomies_html.php:18 ../..
|
1577 |
+
#: /views/admin/import/template/_taxonomies_template.php:41
|
1578 |
+
#: /views/admin/import/template/_taxonomies_template.php:63
|
1579 |
+
#: /views/admin/import/template/_taxonomies_template.php:97
|
1580 |
+
#: /views/admin/import/template/_taxonomies_template.php:107
|
1581 |
+
#: /views/admin/import/template/_taxonomies_template.php:116
|
1582 |
+
#: /views/admin/import/template/_taxonomies_template.php:164
|
1583 |
+
#: /views/admin/import/template/_taxonomies_template.php:182
|
1584 |
+
#: /views/admin/import/template/_taxonomies_template.php:189
|
1585 |
+
#: /views/admin/import/template/_taxonomies_template.php:201
|
1586 |
+
msgid "Assign post to the taxonomy."
|
1587 |
+
msgstr "Post zuordnen zu Taxonomie."
|
1588 |
+
|
1589 |
+
#: ../../helpers/wp_all_import_addon_notifications.php:108
|
1590 |
+
#, php-format
|
1591 |
+
msgid ""
|
1592 |
+
"Make imports easier with the <strong>Advanced Custom Fields Add-On</strong> for WP "
|
1593 |
+
"All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
|
1594 |
+
msgstr ""
|
1595 |
+
"Machen Sie die Imports einfacher mit <strong>Erweiterte benutzerdefinierte Felder "
|
1596 |
+
"Add-on</strong> für WP All Import: <a href=\"%s\" target=\"_blank\">Mehr erfahren</a>"
|
1597 |
+
|
1598 |
+
#: ../../helpers/wp_all_import_addon_notifications.php:141
|
1599 |
+
#, php-format
|
1600 |
+
msgid ""
|
1601 |
+
"Make imports easier with the <strong>free %s Add-On</strong> for WP All Import: <a "
|
1602 |
+
"href=\"%s\" target=\"_blank\">Get Add-On</a>"
|
1603 |
+
msgstr ""
|
1604 |
+
"Machen Sie die Imports einfacher mit <strong>freie %s Add-on</strong> für WP All "
|
1605 |
+
"Import: <a href=\"%s\" target=\"_blank\">Get Add-on</a>"
|
1606 |
+
|
1607 |
+
#: ../../helpers/wp_all_import_is_json.php:12
|
1608 |
+
msgid "Maximum stack depth exceeded"
|
1609 |
+
msgstr "Maximale Stapeltiefe überschritten"
|
1610 |
+
|
1611 |
+
#: ../../helpers/wp_all_import_is_json.php:15
|
1612 |
+
msgid "Underflow or the modes mismatch"
|
1613 |
+
msgstr "Unterlauf oder die Modi passen nicht"
|
1614 |
+
|
1615 |
+
#: ../../helpers/wp_all_import_is_json.php:18
|
1616 |
+
msgid "Unexpected control character found"
|
1617 |
+
msgstr "Unerwarteter Buchstabe gefunden"
|
1618 |
+
|
1619 |
+
#: ../../helpers/wp_all_import_is_json.php:21
|
1620 |
+
msgid "Syntax error, malformed JSON"
|
1621 |
+
msgstr "Syntax Fehler, deformiertes JSON"
|
1622 |
+
|
1623 |
+
#: ../../helpers/wp_all_import_is_json.php:24
|
1624 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
1625 |
+
msgstr "Deformierte UTF-8 Buchstaben, möglicherweise falsch codiert"
|
1626 |
+
|
1627 |
+
#: ../../helpers/wp_all_import_is_json.php:27
|
1628 |
+
msgid "Unknown json error"
|
1629 |
+
msgstr "Unbekannter JSON Fehler "
|
1630 |
+
|
1631 |
+
#: ../../helpers/wp_all_import_template_notifications.php:23
|
1632 |
+
msgid ""
|
1633 |
+
"The import template you are using requires the User Import Add-On. If you continue "
|
1634 |
+
"without it your data may import incorrectly.<br/><br/><a href=\"http://www."
|
1635 |
+
"wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-"
|
1636 |
+
"template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the "
|
1637 |
+
"User Import Add-On</a>."
|
1638 |
+
msgstr ""
|
1639 |
+
"Die Import Vorlage die sie benutzen, benötigt das Benutzer Import Add-on. Wenn Sie "
|
1640 |
+
"ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a "
|
1641 |
+
"href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
|
1642 |
+
"org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target="
|
1643 |
+
"\"_blank\">Benutzer Import Add-On hier kaufen</a>."
|
1644 |
+
|
1645 |
+
#: ../../helpers/wp_all_import_template_notifications.php:27
|
1646 |
+
msgid ""
|
1647 |
+
"The import template you are using requires the WooCommerce Import Add-On. If you "
|
1648 |
+
"continue without it your data may import incorrectly.<br/><br/><a href=\"http://www."
|
1649 |
+
"wpallimport.com/woocommerce-product-import/\" target=\"_blank\">Purchase the "
|
1650 |
+
"WooCommerce Import Add-On</a>."
|
1651 |
+
msgstr ""
|
1652 |
+
"Die Import Vorlage die sie benutzen, benötigt das WooCommerce Import Add-on. Wenn "
|
1653 |
+
"Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a "
|
1654 |
+
"href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank"
|
1655 |
+
"\">WooCommerce Import Add-On hier kaufen</a>."
|
1656 |
+
|
1657 |
+
#: ../../helpers/wp_all_import_template_notifications.php:32
|
1658 |
+
msgid ""
|
1659 |
+
"The import template you are using requires the Realia Add-On. If you continue "
|
1660 |
+
"without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
|
1661 |
+
"org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Download "
|
1662 |
+
"the Realia Add-On</a>."
|
1663 |
+
msgstr ""
|
1664 |
+
"Die Import Vorlage die sie benutzen, benötigt das Realia Add-on. Wenn Sie ohne "
|
1665 |
+
"fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
|
1666 |
+
"\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target="
|
1667 |
+
"\"_blank\">Realia Add-On hier herunterladen</a>."
|
1668 |
+
|
1669 |
+
#: ../../helpers/wp_all_import_template_notifications.php:39
|
1670 |
+
msgid ""
|
1671 |
+
"The import template you are using requires the WP Residence Add-On. If you continue "
|
1672 |
+
"without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
|
1673 |
+
"org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">Download the "
|
1674 |
+
"WP Residence Add-On</a>."
|
1675 |
+
msgstr ""
|
1676 |
+
"Die Import Vorlage die sie benutzen, benötigt das WP Residence Add-on. Wenn Sie ohne "
|
1677 |
+
"fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
|
1678 |
+
"\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target="
|
1679 |
+
"\"_blank\">WP Residence Add-On hier herunterladen</a>."
|
1680 |
+
|
1681 |
+
#: ../../helpers/wp_all_import_template_notifications.php:46
|
1682 |
+
msgid ""
|
1683 |
+
"The import template you are using requires the RealHomes Add-On. If you continue "
|
1684 |
+
"without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
|
1685 |
+
"org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">Download "
|
1686 |
+
"the RealHomes Add-On</a>."
|
1687 |
+
msgstr ""
|
1688 |
+
"Die Import Vorlage die sie benutzen, benötigt das RealHomes Add-on. Wenn Sie ohne "
|
1689 |
+
"fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
|
1690 |
+
"\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target="
|
1691 |
+
"\"_blank\">RealHomes Add-On hier herunterladen</a>."
|
1692 |
+
|
1693 |
+
#: ../../helpers/wp_all_import_template_notifications.php:52
|
1694 |
+
msgid ""
|
1695 |
+
"The import template you are using requires the Jobify Add-On. If you continue "
|
1696 |
+
"without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
|
1697 |
+
"org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Download the Jobify "
|
1698 |
+
"Add-On</a>."
|
1699 |
+
msgstr ""
|
1700 |
+
"Die Import Vorlage die sie benutzen, benötigt das Jobify Add-on. Wenn Sie ohne "
|
1701 |
+
"fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
|
1702 |
+
"\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank"
|
1703 |
+
"\">Jobify Add-On hier herunterladen</a>."
|
1704 |
+
|
1705 |
+
#: ../../helpers/wp_all_import_template_notifications.php:58
|
1706 |
+
msgid ""
|
1707 |
+
"The import template you are using requires the Listify Add-On. If you continue "
|
1708 |
+
"without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
|
1709 |
+
"org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Download the "
|
1710 |
+
"Listify Add-On</a>."
|
1711 |
+
msgstr ""
|
1712 |
+
"Die Import Vorlage die sie benutzen, benötigt das Listify Add-on. Wenn Sie ohne "
|
1713 |
+
"fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
|
1714 |
+
"\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank"
|
1715 |
+
"\">Listify Add-On hier herunterladen</a>."
|
1716 |
+
|
1717 |
+
#: ../../helpers/wp_all_import_template_notifications.php:64
|
1718 |
+
msgid ""
|
1719 |
+
"The import template you are using requires the Reales WP Add-On. If you continue "
|
1720 |
+
"without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
|
1721 |
+
"org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Download "
|
1722 |
+
"the Reales WP Add-On</a>."
|
1723 |
+
msgstr ""
|
1724 |
+
"Die Import Vorlage die sie benutzen, benötigt das Reales WP Add-on. Wenn Sie ohne "
|
1725 |
+
"fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
|
1726 |
+
"\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target="
|
1727 |
+
"\"_blank\">Reales WP Add-On hier herunterladen</a>."
|
1728 |
+
|
1729 |
+
#: ../../helpers/wp_all_import_template_notifications.php:70
|
1730 |
+
msgid ""
|
1731 |
+
"The import template you are using requires the WP Job Manager Add-On. If you "
|
1732 |
+
"continue without it your data may import incorrectly.<br/><br/><a href=\"https://"
|
1733 |
+
"wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank"
|
1734 |
+
"\">Download the WP Job Manager Add-On</a>."
|
1735 |
+
msgstr ""
|
1736 |
+
"Die Import Vorlage die sie benutzen, benötigt das WP Job Add-on. Wenn Sie ohne "
|
1737 |
+
"fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
|
1738 |
+
"\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target="
|
1739 |
+
"\"_blank\">WP Job Manager Add-On hier herunterladen</a>."
|
1740 |
+
|
1741 |
+
#: ../../helpers/wp_all_import_template_notifications.php:76
|
1742 |
+
msgid ""
|
1743 |
+
"The import template you are using requires the Yoast SEO Add-On. If you continue "
|
1744 |
+
"without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
|
1745 |
+
"org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Download the "
|
1746 |
+
"Yoast SEO Add-On</a>."
|
1747 |
+
msgstr ""
|
1748 |
+
"Die Import Vorlage die sie benutzen, benötigt das Yoast SEO Add-on. Wenn Sie ohne "
|
1749 |
+
"fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
|
1750 |
+
"\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank"
|
1751 |
+
"\">Yoast SEO Add-On hier herunterladen</a>."
|
1752 |
+
|
1753 |
+
#: ../../helpers/wp_all_import_template_notifications.php:81
|
1754 |
+
msgid ""
|
1755 |
+
"The import template you are using requires an Add-On for WP All Import. If you "
|
1756 |
+
"continue without using this Add-On your data may import incorrectly."
|
1757 |
+
msgstr ""
|
1758 |
+
"Die Import Vorlage die sie benutzen, benötigt ein Add-on für WP All Import. Wenn Sie "
|
1759 |
+
"ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
|
1760 |
+
|
1761 |
+
#: ../../helpers/wp_all_import_template_notifications.php:93
|
1762 |
+
msgid "<strong>Warning:</strong>"
|
1763 |
+
msgstr "<strong>Warnung:</strong>"
|
1764 |
+
|
1765 |
+
#: ../../models/import/record.php:42
|
1766 |
+
#, php-format
|
1767 |
+
msgid ""
|
1768 |
+
"WP All Import can't read your file.<br/><br/>Probably, you are trying to import an "
|
1769 |
+
"invalid XML feed. Try opening the XML feed in a web browser (Google Chrome is "
|
1770 |
+
"recommended for opening XML files) to see if there is an error message.<br/"
|
1771 |
+
">Alternatively, run the feed through a validator: http://validator.w3.org/<br/"
|
1772 |
+
">99% of the time, the reason for this error is because your XML feed isn't valid.<br/"
|
1773 |
+
">If you are 100% sure you are importing a valid XML feed, please contact WP All "
|
1774 |
+
"Import support."
|
1775 |
+
msgstr ""
|
1776 |
+
"WP All Import kann Ihre Datei nicht lesen. <br/><br/> Eventuell versuchen Sie einen "
|
1777 |
+
"ungültigen XML Feed zu importieren. Versuchen Sie das XML in einem Browser zu öffnen "
|
1778 |
+
"( Google Chrome wird empfohlen um XML Dateien zu öffnen) um zu sehen ob eine "
|
1779 |
+
"Fehlermeldung erscheint. <br/>Alternativ können Sie den Feed durch einen Validator "
|
1780 |
+
"prüfen lassen: http://validator.w3.org/<br/> In 99% der Fälle ist der Grund für "
|
1781 |
+
"einen Fehler ein ungültiger XML Feed. <br/> Wenn Sie 100% sicher sind dass sie einen "
|
1782 |
+
"gültigen XML Feed importieren, Kontaktieren Sie den WP All Import Support."
|
1783 |
+
|
1784 |
+
#: ../../models/import/record.php:54
|
1785 |
+
msgid "Invalid XML"
|
1786 |
+
msgstr "Ungültiges XML"
|
1787 |
+
|
1788 |
+
#: ../../models/import/record.php:57
|
1789 |
+
msgid "Line"
|
1790 |
+
msgstr "Zeile"
|
1791 |
+
|
1792 |
+
#: ../../models/import/record.php:58
|
1793 |
+
msgid "Column"
|
1794 |
+
msgstr "Spalte"
|
1795 |
+
|
1796 |
+
#: ../../models/import/record.php:59
|
1797 |
+
msgid "Code"
|
1798 |
+
msgstr "Code"
|
1799 |
+
|
1800 |
+
#: ../../models/import/record.php:70
|
1801 |
+
msgid "Required PHP components are missing."
|
1802 |
+
msgstr "Benötige PHP Komponenten fehlen."
|
1803 |
+
|
1804 |
+
#: ../../models/import/record.php:71
|
1805 |
+
msgid ""
|
1806 |
+
"WP All Import requires the SimpleXML PHP module to be installed. This is a standard "
|
1807 |
+
"feature of PHP, and is necessary for WP All Import to read the files you are trying "
|
1808 |
+
"to import.<br/>Please contact your web hosting provider and ask them to install and "
|
1809 |
+
"activate the SimpleXML PHP module."
|
1810 |
+
msgstr ""
|
1811 |
+
"WP All Import benötigt einfache XML PHP Module die installiert sein müssen. Diese "
|
1812 |
+
"sind Standardinhalte in PHP und werden von WP All Import benötigt um die Dateien zu "
|
1813 |
+
"lesen die Sie versuchen zu importieren.<br/>Bitte kontaktieren Sie Ihren "
|
1814 |
+
"Dienstanbieter und fragen Sie nach der Installation und Aktivierung der einfachen "
|
1815 |
+
"XML PHP Module."
|
1816 |
+
|
1817 |
+
#: ../../models/import/record.php:115
|
1818 |
+
#, php-format
|
1819 |
+
msgid ""
|
1820 |
+
"This import appears to be using FTP. Unfortunately WP All Import no longer supports "
|
1821 |
+
"the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">%s</a> "
|
1822 |
+
"if you have any questions."
|
1823 |
+
msgstr ""
|
1824 |
+
"Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das FTP "
|
1825 |
+
"Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:support@wpallimport.com"
|
1826 |
+
"\">%s</a> wenn Sie fragen haben."
|
1827 |
+
|
1828 |
+
#: ../../models/import/record.php:261
|
1829 |
+
#, php-format
|
1830 |
+
msgid "#%s No matching elements found for Root element and XPath expression specified"
|
1831 |
+
msgstr ""
|
1832 |
+
"#%s Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck gefunden"
|
1833 |
+
|
1834 |
+
#: ../../models/import/record.php:506
|
1835 |
+
#, php-format
|
1836 |
+
msgid ""
|
1837 |
+
"import finished & cron un-triggered<br>%s %s created %s updated %s deleted %s skipped"
|
1838 |
+
msgstr ""
|
1839 |
+
"Import Abgeschlossen & cron nicht ausgelöst<br/>%s%s erstellt %s aktualisiert %s "
|
1840 |
+
"gelöscht %s übersprungen"
|
1841 |
+
|
1842 |
+
#: ../../models/import/record.php:532
|
1843 |
+
#, php-format
|
1844 |
+
msgid "%d %s created %d updated %d deleted %d skipped"
|
1845 |
+
msgstr "%d %s erstellt %d aktualisiert %d gelöscht %d übersprungen"
|
1846 |
+
|
1847 |
+
#: ../../models/import/record.php:558
|
1848 |
+
#, php-format
|
1849 |
+
msgid "#%s source file not found"
|
1850 |
+
msgstr "#%s Quelle der Datei nicht gefunden"
|
1851 |
+
|
1852 |
+
#: ../../models/import/record.php:600
|
1853 |
+
msgid "Composing titles..."
|
1854 |
+
msgstr "Zusammengesetzte Titel..."
|
1855 |
+
|
1856 |
+
#: ../../models/import/record.php:608
|
1857 |
+
msgid "Composing excerpts..."
|
1858 |
+
msgstr "Zusammengesetzte Auszüge..."
|
1859 |
+
|
1860 |
+
#: ../../models/import/record.php:618
|
1861 |
+
msgid "Composing statuses..."
|
1862 |
+
msgstr "Zusammengesetzter Status..."
|
1863 |
+
|
1864 |
+
#: ../../models/import/record.php:629
|
1865 |
+
msgid "Composing comment statuses..."
|
1866 |
+
msgstr "Zusammengesetzter kommentierter Status..."
|
1867 |
+
|
1868 |
+
#: ../../models/import/record.php:640
|
1869 |
+
msgid "Composing ping statuses..."
|
1870 |
+
msgstr "Zusammengesetzter ping Status..."
|
1871 |
+
|
1872 |
+
#: ../../models/import/record.php:651
|
1873 |
+
msgid "Composing post formats..."
|
1874 |
+
msgstr "Zusammengesetzte post Formate..."
|
1875 |
+
|
1876 |
+
#: ../../models/import/record.php:673
|
1877 |
+
msgid "Composing page templates..."
|
1878 |
+
msgstr "Zusammengesetzte Seiten Vorlagen..."
|
1879 |
+
|
1880 |
+
#: ../../models/import/record.php:684
|
1881 |
+
msgid "Composing post types..."
|
1882 |
+
msgstr "Zusammengesetzte post Typen..."
|
1883 |
+
|
1884 |
+
#: ../../models/import/record.php:698
|
1885 |
+
msgid "Composing page parent..."
|
1886 |
+
msgstr "Zusammengesetzte Elternseiten..."
|
1887 |
+
|
1888 |
+
#: ../../models/import/record.php:758
|
1889 |
+
msgid "Composing authors..."
|
1890 |
+
msgstr "Zusammengesetzte Autoren..."
|
1891 |
+
|
1892 |
+
#: ../../models/import/record.php:799
|
1893 |
+
msgid "Composing slugs..."
|
1894 |
+
msgstr "Zusammengesetzte slugs..."
|
1895 |
+
|
1896 |
+
#: ../../models/import/record.php:808
|
1897 |
+
msgid "Composing menu order..."
|
1898 |
+
msgstr "Zusammengesetzte Menü Reihenfolge..."
|
1899 |
+
|
1900 |
+
#: ../../models/import/record.php:817
|
1901 |
+
msgid "Composing contents..."
|
1902 |
+
msgstr "Zusammengesetzte Inhalte..."
|
1903 |
+
|
1904 |
+
#: ../../models/import/record.php:830
|
1905 |
+
msgid "Composing dates..."
|
1906 |
+
msgstr "Zusammengesetztes Datum..."
|
1907 |
+
|
1908 |
+
#: ../../models/import/record.php:838 ../../models/import/record.php:851 ../..
|
1909 |
+
#: /models/import/record.php:857
|
1910 |
+
#, php-format
|
1911 |
+
msgid "<b>WARNING</b>: unrecognized date format `%s`, assigning current date"
|
1912 |
+
msgstr "<b>WARNUNG</b>: Nicht erkanntes Datums Format `%s`, übertrage aktuelles Datum"
|
1913 |
+
|
1914 |
+
#: ../../models/import/record.php:873
|
1915 |
+
#, php-format
|
1916 |
+
msgid "Composing terms for `%s` taxonomy..."
|
1917 |
+
msgstr "Zusammengesetzte Bezeichnung für `%s` Taxonomien..."
|
1918 |
+
|
1919 |
+
#: ../../models/import/record.php:1085
|
1920 |
+
msgid "Composing custom parameters..."
|
1921 |
+
msgstr "Zusammengesetzte individuelle Parameter..."
|
1922 |
+
|
1923 |
+
#: ../../models/import/record.php:1192 ../../models/import/record.php:1310
|
1924 |
+
msgid "<b>WARNING</b>"
|
1925 |
+
msgstr "<b>WARNUNG</b>"
|
1926 |
+
|
1927 |
+
#: ../../models/import/record.php:1193
|
1928 |
+
msgid ""
|
1929 |
+
"<b>WARNING</b>: No featured images will be created. Uploads folder is not found."
|
1930 |
+
msgstr ""
|
1931 |
+
"<b>WARNUNG</b>: Keine Erstellung von featured Bildern. Upload Verzeichnis wurde "
|
1932 |
+
"nicht gefunden."
|
1933 |
+
|
1934 |
+
#: ../../models/import/record.php:1311
|
1935 |
+
msgid "<b>WARNING</b>: No attachments will be created"
|
1936 |
+
msgstr "<b>WARNUNG</b>:Anhänge werden nicht erstellt."
|
1937 |
+
|
1938 |
+
#: ../../models/import/record.php:1314
|
1939 |
+
msgid "Composing URLs for attachments files..."
|
1940 |
+
msgstr "Zusammengesetzte URLs für Angehängte Dateien..."
|
1941 |
+
|
1942 |
+
#: ../../models/import/record.php:1343
|
1943 |
+
msgid "Composing unique keys..."
|
1944 |
+
msgstr "Zusammengesetzte einzigartige Schlüssel..."
|
1945 |
+
|
1946 |
+
#: ../../models/import/record.php:1351
|
1947 |
+
msgid "Processing posts..."
|
1948 |
+
msgstr "Bearbeite Posts..."
|
1949 |
+
|
1950 |
+
#: ../../models/import/record.php:1357
|
1951 |
+
msgid "Data parsing via add-ons..."
|
1952 |
+
msgstr "Übersetze Daten mittels Add-on..."
|
1953 |
+
|
1954 |
+
#: ../../models/import/record.php:1396
|
1955 |
+
msgid "Calculate specified records to import..."
|
1956 |
+
msgstr "Berechne spezifizierte Datensätze für den Import..."
|
1957 |
+
|
1958 |
+
#: ../../models/import/record.php:1417
|
1959 |
+
msgid "---"
|
1960 |
+
msgstr "---"
|
1961 |
+
|
1962 |
+
#: ../../models/import/record.php:1418
|
1963 |
+
#, php-format
|
1964 |
+
msgid "Record #%s"
|
1965 |
+
msgstr "Aufnahme #%s"
|
1966 |
+
|
1967 |
+
#: ../../models/import/record.php:1422
|
1968 |
+
msgid "<b>ACTION</b>: pmxi_before_post_import ..."
|
1969 |
+
msgstr "<b>ACTION</b>: pmxi_before_post_import ..."
|
1970 |
+
|
1971 |
+
#: ../../models/import/record.php:1430
|
1972 |
+
msgid "<b>WARNING</b>: title is empty."
|
1973 |
+
msgstr "<b>WARNUNG</b>: Titel ist leer."
|
1974 |
+
|
1975 |
+
#: ../../models/import/record.php:1450
|
1976 |
+
#, php-format
|
1977 |
+
msgid "Combine all data for user %s..."
|
1978 |
+
msgstr "Kombiniere alle Daten für Benutzer %s..."
|
1979 |
+
|
1980 |
+
#: ../../models/import/record.php:1468
|
1981 |
+
#, php-format
|
1982 |
+
msgid "Combine all data for post `%s`..."
|
1983 |
+
msgstr "Kombiniere alle Daten für post %s..."
|
1984 |
+
|
1985 |
+
#: ../../models/import/record.php:1481
|
1986 |
+
#, php-format
|
1987 |
+
msgid "Find corresponding article among previously imported for post `%s`..."
|
1988 |
+
msgstr "Finde zugehörige Artikel unter den vorherigen importieren Posts `%s`..."
|
1989 |
+
|
1990 |
+
#: ../../models/import/record.php:1489
|
1991 |
+
#, php-format
|
1992 |
+
msgid "Duplicate post was found for post %s with unique key `%s`..."
|
1993 |
+
msgstr ""
|
1994 |
+
"Doppelter post wurde für post %s erkannt mit dem einzigartigen Schlüssel `%s`..."
|
1995 |
+
|
1996 |
+
#: ../../models/import/record.php:1498
|
1997 |
+
#, php-format
|
1998 |
+
msgid "Duplicate post wasn't found with unique key `%s`..."
|
1999 |
+
msgstr "Doppelter post wurde nicht erkannt mit dem einzigartigen Schlüssel `%s`..."
|
2000 |
+
|
2001 |
+
#: ../../models/import/record.php:1512
|
2002 |
+
#, php-format
|
2003 |
+
msgid "Find corresponding article among database for post `%s`..."
|
2004 |
+
msgstr "Finde zugehörige Artikel in der Datenbank für Posts `%s`..."
|
2005 |
+
|
2006 |
+
#: ../../models/import/record.php:1525
|
2007 |
+
#, php-format
|
2008 |
+
msgid "Duplicate post was found for post `%s`..."
|
2009 |
+
msgstr "Doppelter post wurde erkannt in post `%s`..."
|
2010 |
+
|
2011 |
+
#: ../../models/import/record.php:1534
|
2012 |
+
#, php-format
|
2013 |
+
msgid "Duplicate post wasn'n found for post `%s`..."
|
2014 |
+
msgstr "Doppelter post wurde nicht erkannt in post `%s`..."
|
2015 |
+
|
2016 |
+
#: ../../models/import/record.php:1545
|
2017 |
+
msgid "<b>SKIPPED</b>: by specified records option"
|
2018 |
+
msgstr "<b>SKIPPED</b>: Von spezifizierter schreib Option"
|
2019 |
+
|
2020 |
+
#: ../../models/import/record.php:1566
|
2021 |
+
#, php-format
|
2022 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_update `%s`"
|
2023 |
+
msgstr "<b>SKIPPED</b>: Von Filter: wp_all_import_is_post_to_update `%s`"
|
2024 |
+
|
2025 |
+
#: ../../models/import/record.php:1583
|
2026 |
+
#, php-format
|
2027 |
+
msgid "<b>SKIPPED</b>: Previously imported record found for `%s`"
|
2028 |
+
msgstr "<b>SKIPPED</b>: Vorherige Import Aufzeichnung gefunden für `%s`"
|
2029 |
+
|
2030 |
+
#: ../../models/import/record.php:1598
|
2031 |
+
#, php-format
|
2032 |
+
msgid "Preserve taxonomies of already existing article for `%s`"
|
2033 |
+
msgstr "Erhalte Taxonomien von bereits existierenden Artikeln `%s`"
|
2034 |
+
|
2035 |
+
#: ../../models/import/record.php:1603
|
2036 |
+
#, php-format
|
2037 |
+
msgid ""
|
2038 |
+
"<b>WARNING</b>: Unable to get current taxonomies for article #%d, updating with "
|
2039 |
+
"those read from XML file"
|
2040 |
+
msgstr ""
|
2041 |
+
"<b>WARNING</b>: Erhalt von gegenwärtigen Taxonomien der Artikel #%d nicht möglich, "
|
2042 |
+
"aktualisiere mit Daten der XML Datei."
|
2043 |
+
|
2044 |
+
#: ../../models/import/record.php:1620
|
2045 |
+
#, php-format
|
2046 |
+
msgid "Preserve date of already existing article for `%s`"
|
2047 |
+
msgstr "Erhalte Daten von bereits existierenden Artikeln `%s`"
|
2048 |
+
|
2049 |
+
#: ../../models/import/record.php:1624
|
2050 |
+
#, php-format
|
2051 |
+
msgid "Preserve status of already existing article for `%s`"
|
2052 |
+
msgstr "Erhalte Status von bereits existierenden Artikeln `%s`"
|
2053 |
+
|
2054 |
+
#: ../../models/import/record.php:1628
|
2055 |
+
#, php-format
|
2056 |
+
msgid "Preserve content of already existing article for `%s`"
|
2057 |
+
msgstr "Erhalte Inhalt von bereits existierenden Artikeln `%s`"
|
2058 |
+
|
2059 |
+
#: ../../models/import/record.php:1632
|
2060 |
+
#, php-format
|
2061 |
+
msgid "Preserve title of already existing article for `%s`"
|
2062 |
+
msgstr "Erhalte Titel von bereits existierenden Artikeln `%s`"
|
2063 |
+
|
2064 |
+
#: ../../models/import/record.php:1636
|
2065 |
+
#, php-format
|
2066 |
+
msgid "Preserve slug of already existing article for `%s`"
|
2067 |
+
msgstr "Erhalte slug von bereits existierenden Artikeln `%s`"
|
2068 |
+
|
2069 |
+
#: ../../models/import/record.php:1644
|
2070 |
+
#, php-format
|
2071 |
+
msgid "Preserve excerpt of already existing article for `%s`"
|
2072 |
+
msgstr "Erhalte Auszug von bereits existierenden Artikeln `%s`"
|
2073 |
+
|
2074 |
+
#: ../../models/import/record.php:1648
|
2075 |
+
#, php-format
|
2076 |
+
msgid "Preserve menu order of already existing article for `%s`"
|
2077 |
+
msgstr "Erhalte Menü von bereits existierenden Artikeln `%s`"
|
2078 |
+
|
2079 |
+
#: ../../models/import/record.php:1652
|
2080 |
+
#, php-format
|
2081 |
+
msgid "Preserve post parent of already existing article for `%s`"
|
2082 |
+
msgstr "Erhalte Post von bereits existierenden Artikeln `%s`"
|
2083 |
+
|
2084 |
+
#: ../../models/import/record.php:1660
|
2085 |
+
#, php-format
|
2086 |
+
msgid "Preserve post author of already existing article for `%s`"
|
2087 |
+
msgstr "Erhalte Post Autor von bereits existierenden Artikeln `%s`"
|
2088 |
+
|
2089 |
+
#: ../../models/import/record.php:1678
|
2090 |
+
#, php-format
|
2091 |
+
msgid "Applying filter `pmxi_article_data` for `%s`"
|
2092 |
+
msgstr "Benutze Filter `pmxi_article_data` für `%s`"
|
2093 |
+
|
2094 |
+
#: ../../models/import/record.php:1690
|
2095 |
+
#, php-format
|
2096 |
+
msgid "Deleting attachments for `%s`"
|
2097 |
+
msgstr "Lösche Anhänge für `%s`"
|
2098 |
+
|
2099 |
+
#: ../../models/import/record.php:1695
|
2100 |
+
#, php-format
|
2101 |
+
msgid "Deleting images for `%s`"
|
2102 |
+
msgstr "Lösche Bilder für `%s`"
|
2103 |
+
|
2104 |
+
#: ../../models/import/record.php:1713
|
2105 |
+
msgid "<b>SKIPPED</b>: by do not create new posts option."
|
2106 |
+
msgstr "<b>SKIPPED</b>:erstelle keine neue post Optionen"
|
2107 |
+
|
2108 |
+
#: ../../models/import/record.php:1785
|
2109 |
+
#, php-format
|
2110 |
+
msgid "<b>WARNING</b>: Unable to create cloaked link for %s"
|
2111 |
+
msgstr "<b>WARNING</b>:Verhüllten Link erstellen nicht möglich %s"
|
2112 |
+
|
2113 |
+
#: ../../models/import/record.php:1822
|
2114 |
+
#, php-format
|
2115 |
+
msgid "<b>CREATING</b> `%s` `%s`"
|
2116 |
+
msgstr "<b>CREATING</b> `%s` `%s`"
|
2117 |
+
|
2118 |
+
#: ../../models/import/record.php:1825
|
2119 |
+
#, php-format
|
2120 |
+
msgid "<b>UPDATING</b> `%s` `%s`"
|
2121 |
+
msgstr "<b>UPDATING</b> `%s` `%s`"
|
2122 |
+
|
2123 |
+
#: ../../models/import/record.php:1836 ../../models/import/record.php:1841 ../..
|
2124 |
+
#: /models/import/record.php:2885
|
2125 |
+
msgid "<b>ERROR</b>"
|
2126 |
+
msgstr "<b>ERROR</b>"
|
2127 |
+
|
2128 |
+
#: ../../models/import/record.php:1860
|
2129 |
+
#, php-format
|
2130 |
+
msgid "Associate post `%s` with current import ..."
|
2131 |
+
msgstr "Verknüpfe post `%s` mit gegenwärtigen Import..."
|
2132 |
+
|
2133 |
+
#: ../../models/import/record.php:1866
|
2134 |
+
#, php-format
|
2135 |
+
msgid "Associate post `%s` with post format %s ..."
|
2136 |
+
msgstr "Verknüpfe post `%s` mit gegenwärtigen Format %s..."
|
2137 |
+
|
2138 |
+
#: ../../models/import/record.php:1878
|
2139 |
+
msgid "<b>CUSTOM FIELDS:</b>"
|
2140 |
+
msgstr "<b>CUSTOM FIELDS:</b>"
|
2141 |
+
|
2142 |
+
#: ../../models/import/record.php:1915
|
2143 |
+
#, php-format
|
2144 |
+
msgid ""
|
2145 |
+
"- Custom field %s has been deleted for `%s` attempted to `update all custom fields` "
|
2146 |
+
"setting ..."
|
2147 |
+
msgstr ""
|
2148 |
+
"- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `aktualisiere alle "
|
2149 |
+
"individuellen Felder` Einstellungen... "
|
2150 |
+
|
2151 |
+
#: ../../models/import/record.php:1928
|
2152 |
+
#, php-format
|
2153 |
+
msgid ""
|
2154 |
+
"- Custom field %s has been deleted for `%s` attempted to `update only these custom "
|
2155 |
+
"fields: %s, leave rest alone` setting ..."
|
2156 |
+
msgstr ""
|
2157 |
+
"- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `aktualisiere nur "
|
2158 |
+
"diese individuellen Felder: %s, Rest bleibt leer` Einstellungen... "
|
2159 |
+
|
2160 |
+
#: ../../models/import/record.php:1942
|
2161 |
+
#, php-format
|
2162 |
+
msgid ""
|
2163 |
+
"- Custom field %s has been deleted for `%s` attempted to `leave these fields alone: "
|
2164 |
+
"%s, update all other Custom Fields` setting ..."
|
2165 |
+
msgstr ""
|
2166 |
+
"- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `Lasse diese Felder "
|
2167 |
+
"in Ruhe: %s, aktualisiere alle anderen individuellen Felder` Einstellungen... "
|
2168 |
+
|
2169 |
+
#: ../../models/import/record.php:2013
|
2170 |
+
#, php-format
|
2171 |
+
msgid "- Custom field `%s` has been skipped attempted to record matching options ..."
|
2172 |
+
msgstr ""
|
2173 |
+
"-Benutzerdefiniertes Feld `%s` wurde übersprungen, versuche übereinstimmende "
|
2174 |
+
"Optionen aufzuzeichnen..."
|
2175 |
+
|
2176 |
+
#: ../../models/import/record.php:2021
|
2177 |
+
msgid "- <b>ACTION</b>: pmxi_custom_field"
|
2178 |
+
msgstr "- <b>ACTION</b>: pmxi_custom_field"
|
2179 |
+
|
2180 |
+
#: ../../models/import/record.php:2049
|
2181 |
+
#, php-format
|
2182 |
+
msgid "- Custom field `%s` has been updated with value `%s` for post `%s` ..."
|
2183 |
+
msgstr "-Benutzerdefiniertes Feld `%s` wurde mit Wert '`%s` für Post `%s` ..."
|
2184 |
+
|
2185 |
+
#: ../../models/import/record.php:2050
|
2186 |
+
msgid "- <b>ACTION</b>: pmxi_update_post_meta"
|
2187 |
+
msgstr "- <b>ACTION</b>: pmxi_update_post_meta"
|
2188 |
+
|
2189 |
+
#: ../../models/import/record.php:2090
|
2190 |
+
msgid "<b>IMAGES:</b>"
|
2191 |
+
msgstr "<b>IMAGES:</b>"
|
2192 |
+
|
2193 |
+
#: ../../models/import/record.php:2094
|
2194 |
+
#, php-format
|
2195 |
+
msgid "<b>ERROR</b>: Target directory %s is not writable"
|
2196 |
+
msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
|
2197 |
+
|
2198 |
+
#: ../../models/import/record.php:2123
|
2199 |
+
msgid "- Keep existing and add newest images ..."
|
2200 |
+
msgstr "- Behalte existierende und ergänze neueste Bilder"
|
2201 |
+
|
2202 |
+
#: ../../models/import/record.php:2205
|
2203 |
+
#, php-format
|
2204 |
+
msgid "- Importing image `%s` for `%s` ..."
|
2205 |
+
msgstr "- Importiere Bild `%s` für `%s`..."
|
2206 |
+
|
2207 |
+
#: ../../models/import/record.php:2219
|
2208 |
+
msgid "- found base64_encoded image"
|
2209 |
+
msgstr "- base64_codiertes Bild gefunden"
|
2210 |
+
|
2211 |
+
#: ../../models/import/record.php:2490
|
2212 |
+
#, php-format
|
2213 |
+
msgid "- Post `%s` saved as Draft, because no images are downloaded successfully"
|
2214 |
+
msgstr ""
|
2215 |
+
"- Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden konnten"
|
2216 |
+
|
2217 |
+
#: ../../models/import/record.php:2499
|
2218 |
+
#, php-format
|
2219 |
+
msgid "Post `%s` saved as Draft, because no images are downloaded successfully"
|
2220 |
+
msgstr ""
|
2221 |
+
"Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden konnten"
|
2222 |
+
|
2223 |
+
#: ../../models/import/record.php:2549
|
2224 |
+
msgid "<b>ATTACHMENTS:</b>"
|
2225 |
+
msgstr "<b>ATTACHMENTS:</b>"
|
2226 |
+
|
2227 |
+
#: ../../models/import/record.php:2552
|
2228 |
+
#, php-format
|
2229 |
+
msgid "- <b>ERROR</b>: Target directory %s is not writable"
|
2230 |
+
msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
|
2231 |
+
|
2232 |
+
#: ../../models/import/record.php:2561
|
2233 |
+
#, php-format
|
2234 |
+
msgid "- Importing attachments for `%s` ..."
|
2235 |
+
msgstr "- Importiere Anhänge für `%s`..."
|
2236 |
+
|
2237 |
+
#: ../../models/import/record.php:2593
|
2238 |
+
#, php-format
|
2239 |
+
msgid "- Filename for attachment was generated as %s"
|
2240 |
+
msgstr "- Dateiname für Anhang wurde generiert als %s"
|
2241 |
+
|
2242 |
+
#: ../../models/import/record.php:2598
|
2243 |
+
#, php-format
|
2244 |
+
msgid "- <b>WARNING</b>: Attachment file %s cannot be saved locally as %s"
|
2245 |
+
msgstr "- <b>WARNUNG</b>: Anhang Datei %s kann lokal nicht gespeichert werden als %s"
|
2246 |
+
|
2247 |
+
#: ../../models/import/record.php:2599
|
2248 |
+
#, php-format
|
2249 |
+
msgid "- <b>WP Error</b>: %s"
|
2250 |
+
msgstr "- <b>WP Error</b>: %s"
|
2251 |
+
|
2252 |
+
#: ../../models/import/record.php:2613
|
2253 |
+
#, php-format
|
2254 |
+
msgid "- File %s has been successfully downloaded"
|
2255 |
+
msgstr "- Datei %s wurde erfolgreich heruntergeladen"
|
2256 |
+
|
2257 |
+
#: ../../models/import/record.php:2629
|
2258 |
+
#, php-format
|
2259 |
+
msgid "- Attachment has been successfully created for post `%s`"
|
2260 |
+
msgstr "- Anhang wurde erstellt für den Post `%s`"
|
2261 |
+
|
2262 |
+
#: ../../models/import/record.php:2630 ../../models/import/record.php:2636
|
2263 |
+
msgid "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
2264 |
+
msgstr "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
2265 |
+
|
2266 |
+
#: ../../models/import/record.php:2654
|
2267 |
+
msgid "<b>TAXONOMIES:</b>"
|
2268 |
+
msgstr "<b>TAXONOMIES:</b>"
|
2269 |
+
|
2270 |
+
#: ../../models/import/record.php:2663
|
2271 |
+
#, php-format
|
2272 |
+
msgid "- Importing taxonomy `%s` ..."
|
2273 |
+
msgstr "- Importiere Taxonomie `%s`..."
|
2274 |
+
|
2275 |
+
#: ../../models/import/record.php:2666
|
2276 |
+
#, php-format
|
2277 |
+
msgid "- Auto-nest enabled with separator `%s` ..."
|
2278 |
+
msgstr "- Automatische Verschachtelung aktiviert mit Trennzeichen `%s`..."
|
2279 |
+
|
2280 |
+
#: ../../models/import/record.php:2672
|
2281 |
+
#, php-format
|
2282 |
+
msgid ""
|
2283 |
+
"- %s %s `%s` has been skipped attempted to `Leave these taxonomies alone, update all "
|
2284 |
+
"others`..."
|
2285 |
+
msgstr ""
|
2286 |
+
"- %s %s `%s` wurde übersprungen durch den Versuch `Lasse die Taxonomien in Ruhe, "
|
2287 |
+
"aktualisiere alle anderen`..."
|
2288 |
+
|
2289 |
+
#: ../../models/import/record.php:2677
|
2290 |
+
#, php-format
|
2291 |
+
msgid ""
|
2292 |
+
"- %s %s `%s` has been skipped attempted to `Update only these taxonomies, leave the "
|
2293 |
+
"rest alone`..."
|
2294 |
+
msgstr ""
|
2295 |
+
"- %s %s `%s` wurde übersprungen durch den Versuch `Aktualisiere nur diese "
|
2296 |
+
"Taxonomien, lasse den Rest in ruhe`..."
|
2297 |
+
|
2298 |
+
#: ../../models/import/record.php:2714
|
2299 |
+
#, php-format
|
2300 |
+
msgid "- Creating parent %s %s `%s` ..."
|
2301 |
+
msgstr "- Erstelle aktuell %s %s `%s` ..."
|
2302 |
+
|
2303 |
+
#: ../../models/import/record.php:2717
|
2304 |
+
#, php-format
|
2305 |
+
msgid "- Creating child %s %s for %s named `%s` ..."
|
2306 |
+
msgstr "- Erstelle Kind %s %s für %s Name: `%s` ..."
|
2307 |
+
|
2308 |
+
#: ../../models/import/record.php:2724
|
2309 |
+
#, php-format
|
2310 |
+
msgid "- <b>WARNING</b>: `%s`"
|
2311 |
+
msgstr "- <b>WARNING</b>: `%s`"
|
2312 |
+
|
2313 |
+
#: ../../models/import/record.php:2745
|
2314 |
+
#, php-format
|
2315 |
+
msgid ""
|
2316 |
+
"- Attempted to create parent %s %s `%s`, duplicate detected. Importing %s to "
|
2317 |
+
"existing `%s` %s, ID %d, slug `%s` ..."
|
2318 |
+
msgstr ""
|
2319 |
+
"- Versuche Eltern Element zu erstellen %s %s `%s`, Duplikat entdeckt. Importiere %s "
|
2320 |
+
"in existierendes` %s` %s, ID %d, slug `%s`..."
|
2321 |
+
|
2322 |
+
#: ../../models/import/record.php:2748
|
2323 |
+
#, php-format
|
2324 |
+
msgid ""
|
2325 |
+
"- Attempted to create child %s %s `%s`, duplicate detected. Importing %s to existing "
|
2326 |
+
"`%s` %s, ID %d, slug `%s` ..."
|
2327 |
+
msgstr ""
|
2328 |
+
"- Versuche Kind Element zu erstellen %s %s `%s`, Duplikat entdeckt. Importiere %s in "
|
2329 |
+
"existierendes` %s` %s, ID %d, slug `%s`..."
|
2330 |
+
|
2331 |
+
#: ../../models/import/record.php:2763
|
2332 |
+
#, php-format
|
2333 |
+
msgid ""
|
2334 |
+
"- %s %s `%s` has been skipped attempted to `Do not update Taxonomies (incl. "
|
2335 |
+
"Categories and Tags)`..."
|
2336 |
+
msgstr ""
|
2337 |
+
"- %s %s `%s` wurde übersprungen durch den Versuch `Taxonomien nicht aktualisieren "
|
2338 |
+
"( incl. Kategorien und Tags)`..."
|
2339 |
+
|
2340 |
+
#: ../../models/import/record.php:2782
|
2341 |
+
#, php-format
|
2342 |
+
msgid "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
2343 |
+
msgstr "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
2344 |
+
|
2345 |
+
#: ../../models/import/record.php:2784
|
2346 |
+
#, php-format
|
2347 |
+
msgid "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
2348 |
+
msgstr "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
2349 |
+
|
2350 |
+
#: ../../models/import/record.php:2825
|
2351 |
+
msgid "<b>ACTION</b>: pmxi_saved_post"
|
2352 |
+
msgstr "<b>ACTION</b>: pmxi_saved_post"
|
2353 |
+
|
2354 |
+
#: ../../models/import/record.php:2832
|
2355 |
+
#, php-format
|
2356 |
+
msgid ""
|
2357 |
+
"<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class="
|
2358 |
+
"\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
2359 |
+
msgstr ""
|
2360 |
+
"<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class="
|
2361 |
+
"\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
2362 |
+
|
2363 |
+
#: ../../models/import/record.php:2836
|
2364 |
+
msgid "<b>ACTION</b>: pmxi_after_post_import"
|
2365 |
+
msgstr "<b>ACTION</b>: pmxi_after_post_import"
|
2366 |
+
|
2367 |
+
#: ../../models/import/record.php:2865
|
2368 |
+
msgid "Update stock status previously imported posts which are no longer actual..."
|
2369 |
+
msgstr ""
|
2370 |
+
"Aktualisiere Lager Status vorherig importierter Posts welche nicht länger aktuell "
|
2371 |
+
"sind..."
|
2372 |
+
|
2373 |
+
#: ../../models/import/record.php:2889
|
2374 |
+
msgid "Cleaning temporary data..."
|
2375 |
+
msgstr "Reinige temporäre Daten..."
|
2376 |
+
|
2377 |
+
#: ../../models/import/record.php:2905
|
2378 |
+
msgid "Deleting source XML file..."
|
2379 |
+
msgstr "Lösche Ursprüngliche XML Datei..."
|
2380 |
+
|
2381 |
+
#: ../../models/import/record.php:2909
|
2382 |
+
msgid "Deleting chunks files..."
|
2383 |
+
msgstr "Lösche Block Dateien..."
|
2384 |
+
|
2385 |
+
#: ../../models/import/record.php:2916 ../../models/import/record.php:2925
|
2386 |
+
#, php-format
|
2387 |
+
msgid "<b>WARNING</b>: Unable to remove %s"
|
2388 |
+
msgstr "<b>WARNING</b>: Entfernen nicht möglich %s"
|
2389 |
+
|
2390 |
+
#: ../../models/import/record.php:2937
|
2391 |
+
msgid "Removing previously imported posts which are no longer actual..."
|
2392 |
+
msgstr "Entferne vorher importierte Posts welche nicht länger aktuell sind..."
|
2393 |
+
|
2394 |
+
#: ../../models/import/record.php:2959
|
2395 |
+
msgid "<b>ACTION</b>: pmxi_delete_post"
|
2396 |
+
msgstr "<b>ACTION</b>: pmxi_delete_post"
|
2397 |
+
|
2398 |
+
#: ../../models/import/record.php:2961
|
2399 |
+
msgid "Deleting posts from database"
|
2400 |
+
msgstr "Lösche Posts aus der Datenbank"
|
2401 |
+
|
2402 |
+
#: ../../models/import/record.php:2977
|
2403 |
+
#, php-format
|
2404 |
+
msgid "Instead of deletion post with ID `%s`, set Custom Field `%s` to value `%s`"
|
2405 |
+
msgstr ""
|
2406 |
+
"Anstatt die Posts mit der ID `%s` zu löschen, setze Individuelles Feld `%s` auf Wert "
|
2407 |
+
"`%s`"
|
2408 |
+
|
2409 |
+
#: ../../models/import/record.php:2985
|
2410 |
+
#, php-format
|
2411 |
+
msgid "Instead of deletion, change post with ID `%s` status to Draft"
|
2412 |
+
msgstr "Anstatt die Posts mit der ID `%s` zu löschen, setze Status auf Entwurf"
|
2413 |
+
|
2414 |
+
#: ../../models/import/record.php:3118
|
2415 |
+
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
2416 |
+
msgstr ""
|
2417 |
+
"<b>ERROR</b> Einfügen von Beziehungen der Begriff in die Datenbank nicht möglich"
|
2418 |
+
|
2419 |
+
#: ../../views/admin/addons/index.php:3
|
2420 |
+
msgid "WP All Import Add-ons"
|
2421 |
+
msgstr "WP All Import Add-ons"
|
2422 |
+
|
2423 |
+
#: ../../views/admin/addons/index.php:8
|
2424 |
+
msgid "Premium Add-ons"
|
2425 |
+
msgstr "Premium Add-ons"
|
2426 |
+
|
2427 |
+
#: ../../views/admin/addons/index.php:20 ../../views/admin/addons/index.php:61
|
2428 |
+
msgid "Installed"
|
2429 |
+
msgstr "Installiert"
|
2430 |
+
|
2431 |
+
#: ../../views/admin/addons/index.php:22
|
2432 |
+
msgid "Free Version Installed"
|
2433 |
+
msgstr "Gratis Version Installiert"
|
2434 |
+
|
2435 |
+
#: ../../views/admin/addons/index.php:29 ../../views/admin/addons/index.php:70
|
2436 |
+
msgid " required"
|
2437 |
+
msgstr "Benötigt"
|
2438 |
+
|
2439 |
+
#: ../../views/admin/addons/index.php:36 ../../views/admin/addons/index.php:77 ..
|
2440 |
+
#: /../views/admin/addons/index.php:82 ../../views/admin/import/index.php:108
|
2441 |
+
msgid "Download"
|
2442 |
+
msgstr "Herunterladen"
|
2443 |
+
|
2444 |
+
#: ../../views/admin/addons/index.php:41
|
2445 |
+
msgid "Purchase & Install"
|
2446 |
+
msgstr "Bezahlen & Installieren"
|
2447 |
+
|
2448 |
+
#: ../../views/admin/addons/index.php:49
|
2449 |
+
msgid "Free Add-ons"
|
2450 |
+
msgstr "Gratis Add-ons"
|
2451 |
+
|
2452 |
+
#: ../../views/admin/addons/index.php:63
|
2453 |
+
msgid "Paid Version Installed"
|
2454 |
+
msgstr "Bezahlte Version Installiert"
|
2455 |
+
|
2456 |
+
#: ../../views/admin/help/index.php:1
|
2457 |
+
msgid "WP All Import Help"
|
2458 |
+
msgstr "WP All Import Hilfe"
|
2459 |
+
|
2460 |
+
#: ../../views/admin/history/index.php:16 ../../views/admin/history/index.php:18 .
|
2461 |
+
#: ../views/admin/history/index.php:20
|
2462 |
+
#, php-format
|
2463 |
+
msgid "%s - Import History"
|
2464 |
+
msgstr "%s - Import Chronik"
|
2465 |
+
|
2466 |
+
#: ../../views/admin/history/index.php:32 ../../views/admin/manage/index.php:27
|
2467 |
+
msgid "ID"
|
2468 |
+
msgstr "ID"
|
2469 |
+
|
2470 |
+
#: ../../views/admin/history/index.php:34
|
2471 |
+
msgid "Run Time"
|
2472 |
+
msgstr "Laufzeit"
|
2473 |
+
|
2474 |
+
#: ../../views/admin/history/index.php:35
|
2475 |
+
msgid "Type"
|
2476 |
+
msgstr "Typ"
|
2477 |
+
|
2478 |
+
#: ../../views/admin/history/index.php:36 ../../views/admin/manage/index.php:30
|
2479 |
+
msgid "Summary"
|
2480 |
+
msgstr "Zusammenfassung"
|
2481 |
+
|
2482 |
+
#: ../../views/admin/history/index.php:42
|
2483 |
+
msgid "Scheduling Status"
|
2484 |
+
msgstr "Planung Status"
|
2485 |
+
|
2486 |
+
#: ../../views/admin/history/index.php:42
|
2487 |
+
msgid "triggered"
|
2488 |
+
msgstr "ausgelöst"
|
2489 |
+
|
2490 |
+
#: ../../views/admin/history/index.php:42
|
2491 |
+
msgid "and processing"
|
2492 |
+
msgstr "und bearbeitend"
|
2493 |
+
|
2494 |
+
#: ../../views/admin/history/index.php:52 ../../views/admin/history/index.php:226
|
2495 |
+
#: ../../views/admin/manage/index.php:44 ../../views/admin/manage/index.php:350
|
2496 |
+
msgid "Bulk Actions"
|
2497 |
+
msgstr "Massen Aktion"
|
2498 |
+
|
2499 |
+
#: ../../views/admin/history/index.php:53 ../../views/admin/history/index.php:228
|
2500 |
+
#: ../../views/admin/manage/index.php:45 ../../views/admin/manage/index.php:192 ..
|
2501 |
+
#: /../views/admin/manage/index.php:352
|
2502 |
+
msgid "Delete"
|
2503 |
+
msgstr "Löschen"
|
2504 |
+
|
2505 |
+
#: ../../views/admin/history/index.php:55 ../../views/admin/history/index.php:234
|
2506 |
+
#: ../../views/admin/import/element.php:86 ../../views/admin/manage/index.php:47 .
|
2507 |
+
#: ../views/admin/manage/index.php:358
|
2508 |
+
msgid "Apply"
|
2509 |
+
msgstr "Anwenden"
|
2510 |
+
|
2511 |
+
#: ../../views/admin/history/index.php:61 ../../views/admin/manage/index.php:53
|
2512 |
+
#, php-format
|
2513 |
+
msgid "Displaying %s–%s of %s"
|
2514 |
+
msgstr "Zeige %s–%s von %s"
|
2515 |
+
|
2516 |
+
#: ../../views/admin/history/index.php:108
|
2517 |
+
msgid "No previous history found."
|
2518 |
+
msgstr "Keine vorherige Chronik gefunden."
|
2519 |
+
|
2520 |
+
#: ../../views/admin/history/index.php:161
|
2521 |
+
msgid "manual run"
|
2522 |
+
msgstr "Manueller Lauf"
|
2523 |
+
|
2524 |
+
#: ../../views/admin/history/index.php:164
|
2525 |
+
msgid "continue run"
|
2526 |
+
msgstr "Lauf fortsetzen"
|
2527 |
+
|
2528 |
+
#: ../../views/admin/history/index.php:189
|
2529 |
+
msgid "Download Log"
|
2530 |
+
msgstr "Download Log"
|
2531 |
+
|
2532 |
+
#: ../../views/admin/history/index.php:193
|
2533 |
+
msgid "Log Unavailable"
|
2534 |
+
msgstr "Log nicht verfügbar"
|
2535 |
+
|
2536 |
+
#: ../../views/admin/history/index.php:230 ../../views/admin/manage/index.php:354
|
2537 |
+
msgid "Restore"
|
2538 |
+
msgstr "Wiederherstellen"
|
2539 |
+
|
2540 |
+
#: ../../views/admin/history/index.php:231 ../../views/admin/manage/index.php:355
|
2541 |
+
msgid "Delete Permanently"
|
2542 |
+
msgstr "Permanent Löschen"
|
2543 |
+
|
2544 |
+
#: ../../views/admin/history/index.php:238 ../../views/admin/import/confirm.php: 337
|
2545 |
+
#: ../../views/admin/import/element.php:213 ../../views/admin/import/index. php:286
|
2546 |
+
#: ../../views/admin/import/options.php:73 ../.. /views/admin/import/process.php:107
|
2547 |
+
#: ../../views/admin/import/template.php:219 . ../views/admin/manage/index.php:363
|
2548 |
+
#: ../../views/admin/manage/scheduling.php: 62 ../../views/admin/settings/index.php:212
|
2549 |
+
msgid "Created by"
|
2550 |
+
msgstr "Erstellt von"
|
2551 |
+
|
2552 |
+
#: ../../views/admin/import/confirm.php:12 ../../views/admin/import/element.php:9
|
2553 |
+
#: ../../views/admin/import/index.php:44 ../../views/admin/import/options.php:19 .
|
2554 |
+
#: ../views/admin/import/process.php:9 ../../views/admin/import/template.php:10
|
2555 |
+
msgid "Import XML / CSV"
|
2556 |
+
msgstr "Importiere XML / CSV"
|
2557 |
+
|
2558 |
+
#: ../../views/admin/import/confirm.php:15 ../../views/admin/import/element.php: 12
|
2559 |
+
#: ../../views/admin/import/index.php:47 ../../views/admin/import/options.php: 22
|
2560 |
+
#: ../../views/admin/import/process.php:12 ../../views/admin/import/template. php:13
|
2561 |
+
msgid "Support"
|
2562 |
+
msgstr "Support"
|
2563 |
+
|
2564 |
+
#: ../../views/admin/import/confirm.php:15 ../../views/admin/import/element.php: 12
|
2565 |
+
#: ../../views/admin/import/index.php:47 ../../views/admin/import/options.php: 22
|
2566 |
+
#: ../../views/admin/import/process.php:12 ../../views/admin/import/template. php:13
|
2567 |
+
msgid "Documentation"
|
2568 |
+
msgstr "Dokumentation"
|
2569 |
+
|
2570 |
+
#: ../../views/admin/import/confirm.php:56
|
2571 |
+
msgid "Your file is all set up!"
|
2572 |
+
msgstr "Ihre Datei ist bereit!"
|
2573 |
+
|
2574 |
+
#: ../../views/admin/import/confirm.php:58
|
2575 |
+
msgid "This import did not finish successfuly last time it was run."
|
2576 |
+
msgstr "Dieser Import wurde beim letzten mal nicht erfolgreich beendet."
|
2577 |
+
|
2578 |
+
#: ../../views/admin/import/confirm.php:62
|
2579 |
+
msgid "Check the settings below, then click the green button to run the import."
|
2580 |
+
msgstr ""
|
2581 |
+
"Überprüfen Sie die Einstellungen unten, und klicken Sie auf den grünen Button um den "
|
2582 |
+
"Import zu starten."
|
2583 |
+
|
2584 |
+
#: ../../views/admin/import/confirm.php:64
|
2585 |
+
msgid "You can attempt to continue where it left off."
|
2586 |
+
msgstr "Versuchen Sie an der letzten Stelle fortzusetzen."
|
2587 |
+
|
2588 |
+
#: ../../views/admin/import/confirm.php:72 ../../views/admin/import/confirm.php:326
|
2589 |
+
msgid "Confirm & Run Import"
|
2590 |
+
msgstr "Bestätigen & Import starten"
|
2591 |
+
|
2592 |
+
#: ../../views/admin/import/confirm.php:82
|
2593 |
+
msgid "Continue from the last run"
|
2594 |
+
msgstr "Vom letzten Lauf fortsetzen"
|
2595 |
+
|
2596 |
+
#: ../../views/admin/import/confirm.php:86
|
2597 |
+
msgid "Run from the beginning"
|
2598 |
+
msgstr "Starte von Beginn"
|
2599 |
+
|
2600 |
+
#: ../../views/admin/import/confirm.php:89 ../../views/admin/import/process.php:82
|
2601 |
+
msgid "Continue Import"
|
2602 |
+
msgstr "Import Fortsetzen"
|
2603 |
+
|
2604 |
+
#: ../../views/admin/import/confirm.php:91
|
2605 |
+
msgid "Run entire import from the beginning"
|
2606 |
+
msgstr "Starte gesamten Import von Vorne"
|
2607 |
+
|
2608 |
+
#: ../../views/admin/import/confirm.php:110
|
2609 |
+
msgid "Import Summary"
|
2610 |
+
msgstr "Import Zusammenfassung"
|
2611 |
+
|
2612 |
+
#: ../../views/admin/import/confirm.php:116
|
2613 |
+
#, php-format
|
2614 |
+
msgid "Your max_execution_time is %s seconds"
|
2615 |
+
msgstr "Ihre max_execution_time ist %s Sekunden"
|
2616 |
+
|
2617 |
+
#: ../../views/admin/import/confirm.php:140
|
2618 |
+
#, php-format
|
2619 |
+
msgid ""
|
2620 |
+
"WP All Import will import the file <span style=\"color:#40acad;\">%s</span>, which "
|
2621 |
+
"is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2622 |
+
msgstr ""
|
2623 |
+
"WP All Import wird die Datei <span style=\"color:#40acad;\">%s</span> importieren, "
|
2624 |
+
"welche <span style=\"color:#000; font-weight:bold;\">%s</span>ist."
|
2625 |
+
|
2626 |
+
#: ../../views/admin/import/confirm.php:140
|
2627 |
+
msgid "undefined"
|
2628 |
+
msgstr "Undefiniert"
|
2629 |
+
|
2630 |
+
#: ../../views/admin/import/confirm.php:143
|
2631 |
+
#, php-format
|
2632 |
+
msgid ""
|
2633 |
+
"WP All Import will process the records matching the XPath expression: <span style="
|
2634 |
+
"\"color:#46ba69; font-weight:bold;\">%s</span>"
|
2635 |
+
msgstr ""
|
2636 |
+
"WP All Import bearbeitet die Datensätze die mit folgendem XPath Ausdruck: <span "
|
2637 |
+
"style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
2638 |
+
|
2639 |
+
#: ../../views/admin/import/confirm.php:145
|
2640 |
+
#, php-format
|
2641 |
+
msgid ""
|
2642 |
+
"WP All Import will process <span style=\"color:#46ba69; font-weight:bold;\">%s</"
|
2643 |
+
"span> rows in your file"
|
2644 |
+
msgstr ""
|
2645 |
+
"WP All Import bearbeitet <span style=\"color:#46ba69; font-weight:bold;\">%s</span> "
|
2646 |
+
"Zeilen in Ihrer Datei"
|
2647 |
+
|
2648 |
+
#: ../../views/admin/import/confirm.php:147
|
2649 |
+
#, php-format
|
2650 |
+
msgid ""
|
2651 |
+
"WP All Import will process all %s <span style=\"color:#46ba69; font-weight:bold;"
|
2652 |
+
"\"><%s></span> records in your file"
|
2653 |
+
msgstr ""
|
2654 |
+
"WP All Import bearbeitet alle %s <span style=\"color:#46ba69; font-weight:bold;"
|
2655 |
+
"\"><%s></span> Datensätze in Ihrer Datei"
|
2656 |
+
|
2657 |
+
#: ../../views/admin/import/confirm.php:151
|
2658 |
+
#, php-format
|
2659 |
+
msgid "WP All Import will process only specified records: %s"
|
2660 |
+
msgstr "WP All Import bearbeitet nur die spezifizierten Datensätze: %s"
|
2661 |
+
|
2662 |
+
#: ../../views/admin/import/confirm.php:159
|
2663 |
+
#, php-format
|
2664 |
+
msgid "Your unique key is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2665 |
+
msgstr ""
|
2666 |
+
"Ihr einzigartiger Schlüssel ist <span style=\"color:#000; font-weight:bold;\">%s</"
|
2667 |
+
"span>"
|
2668 |
+
|
2669 |
+
#: ../../views/admin/import/confirm.php:163
|
2670 |
+
#, php-format
|
2671 |
+
msgid ""
|
2672 |
+
"%ss previously imported by this import (ID: %s) with the same unique key will be "
|
2673 |
+
"updated."
|
2674 |
+
msgstr ""
|
2675 |
+
"%ss vorher importiert von diesem Import (ID: %s) mit dem selben einzigartigen "
|
2676 |
+
"Schlüssel werden aktualisiert."
|
2677 |
+
|
2678 |
+
#: ../../views/admin/import/confirm.php:166
|
2679 |
+
#, php-format
|
2680 |
+
msgid ""
|
2681 |
+
"%ss previously imported by this import (ID: %s) that aren't present for this run of "
|
2682 |
+
"the import will be deleted."
|
2683 |
+
msgstr ""
|
2684 |
+
"%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in diesem "
|
2685 |
+
"Import lauf, werden gelöscht."
|
2686 |
+
|
2687 |
+
#: ../../views/admin/import/confirm.php:170
|
2688 |
+
#, php-format
|
2689 |
+
msgid ""
|
2690 |
+
"%ss previously imported by this import (ID: %s) that aren't present for this run of "
|
2691 |
+
"the import will be set to draft."
|
2692 |
+
msgstr ""
|
2693 |
+
"%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in diesem "
|
2694 |
+
"Import lauf, werden auf Entwurf gesetzt."
|
2695 |
+
|
2696 |
+
#: ../../views/admin/import/confirm.php:174
|
2697 |
+
#, php-format
|
2698 |
+
msgid ""
|
2699 |
+
"Records with unique keys that don't match any unique keys from %ss created by "
|
2700 |
+
"previous runs of this import (ID: %s) will be created."
|
2701 |
+
msgstr ""
|
2702 |
+
"Datensätze mit eindeutigem Schlüssel, die zu keinem Schlüssel von %ss passen, "
|
2703 |
+
"erstellt von früheren Durchläufen dieses Import (ID:%s) werden erstellt."
|
2704 |
+
|
2705 |
+
#: ../../views/admin/import/confirm.php:188
|
2706 |
+
#, php-format
|
2707 |
+
msgid ""
|
2708 |
+
"WP All Import will merge data into existing %ss, matching the following criteria: %s"
|
2709 |
+
msgstr ""
|
2710 |
+
"WP All Import werden die Daten in bestehende %ss, mit folgenden Suchkriterien "
|
2711 |
+
"zusammenzuführen:%s"
|
2712 |
+
|
2713 |
+
#: ../../views/admin/import/confirm.php:191
|
2714 |
+
msgid "Existing data will be updated with the data specified in this import."
|
2715 |
+
msgstr ""
|
2716 |
+
"Bestehende Daten werden mit den in diesem Import angegebenen Daten aktualisiert "
|
2717 |
+
"werden."
|
2718 |
+
|
2719 |
+
#: ../../views/admin/import/confirm.php:194
|
2720 |
+
#, php-format
|
2721 |
+
msgid ""
|
2722 |
+
"Next %s data will be updated, <strong>all other data will be left alone</strong>"
|
2723 |
+
msgstr ""
|
2724 |
+
"Nächste %s Daten werden aktualisiert, <strong>alle anderen Daten werden in Ruhe "
|
2725 |
+
"gelassen</strong>"
|
2726 |
+
|
2727 |
+
#: ../../views/admin/import/confirm.php:197
|
2728 |
+
msgid "status"
|
2729 |
+
msgstr "Status"
|
2730 |
+
|
2731 |
+
#: ../../views/admin/import/confirm.php:200
|
2732 |
+
msgid "title"
|
2733 |
+
msgstr "Titel"
|
2734 |
+
|
2735 |
+
#: ../../views/admin/import/confirm.php:203
|
2736 |
+
msgid "slug"
|
2737 |
+
msgstr "Slug"
|
2738 |
+
|
2739 |
+
#: ../../views/admin/import/confirm.php:206
|
2740 |
+
msgid "content"
|
2741 |
+
msgstr "Inhalt"
|
2742 |
+
|
2743 |
+
#: ../../views/admin/import/confirm.php:209
|
2744 |
+
msgid "excerpt"
|
2745 |
+
msgstr "Ausschnitt"
|
2746 |
+
|
2747 |
+
#: ../../views/admin/import/confirm.php:212
|
2748 |
+
msgid "dates"
|
2749 |
+
msgstr "Datum"
|
2750 |
+
|
2751 |
+
#: ../../views/admin/import/confirm.php:215
|
2752 |
+
msgid "menu order"
|
2753 |
+
msgstr "Menü Reihenfolge"
|
2754 |
+
|
2755 |
+
#: ../../views/admin/import/confirm.php:218
|
2756 |
+
msgid "parent post"
|
2757 |
+
msgstr "Eltern post"
|
2758 |
+
|
2759 |
+
#: ../../views/admin/import/confirm.php:221
|
2760 |
+
msgid "attachments"
|
2761 |
+
msgstr "Anhänge"
|
2762 |
+
|
2763 |
+
#: ../../views/admin/import/confirm.php:228
|
2764 |
+
msgid "all advanced custom fields"
|
2765 |
+
msgstr "Alle erweiterte benutzerdefinierte Felder"
|
2766 |
+
|
2767 |
+
#: ../../views/admin/import/confirm.php:231
|
2768 |
+
msgid "only ACF presented in import options"
|
2769 |
+
msgstr "Nur ACF präsent in den Import Optionen"
|
2770 |
+
|
2771 |
+
#: ../../views/admin/import/confirm.php:234
|
2772 |
+
#, php-format
|
2773 |
+
msgid "only these ACF : %s"
|
2774 |
+
msgstr "Nur diese ACF: %s"
|
2775 |
+
|
2776 |
+
#: ../../views/admin/import/confirm.php:237
|
2777 |
+
#, php-format
|
2778 |
+
msgid "all ACF except these: %s"
|
2779 |
+
msgstr "Alle ACF ausser diese: %s"
|
2780 |
+
|
2781 |
+
#: ../../views/admin/import/confirm.php:247
|
2782 |
+
msgid "old images will be updated with new"
|
2783 |
+
msgstr "Alte Bilder werden aktualisiert"
|
2784 |
+
|
2785 |
+
#: ../../views/admin/import/confirm.php:250
|
2786 |
+
msgid "only new images will be added"
|
2787 |
+
msgstr "Nur neue Bilder werden hinzugefügt"
|
2788 |
+
|
2789 |
+
#: ../../views/admin/import/confirm.php:260
|
2790 |
+
msgid "all custom fields"
|
2791 |
+
msgstr "Alle individuellen Felder"
|
2792 |
+
|
2793 |
+
#: ../../views/admin/import/confirm.php:263
|
2794 |
+
#, php-format
|
2795 |
+
msgid "only these custom fields : %s"
|
2796 |
+
msgstr "Nur diese individuellen Felder: %s"
|
2797 |
+
|
2798 |
+
#: ../../views/admin/import/confirm.php:266
|
2799 |
+
#, php-format
|
2800 |
+
msgid "all cusom fields except these: %s"
|
2801 |
+
msgstr "Alle individuellen Felder ausser diese: %s"
|
2802 |
+
|
2803 |
+
#: ../../views/admin/import/confirm.php:276
|
2804 |
+
msgid "remove existing taxonomies, add new taxonomies"
|
2805 |
+
msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
|
2806 |
+
|
2807 |
+
#: ../../views/admin/import/confirm.php:279
|
2808 |
+
msgid "only add new"
|
2809 |
+
msgstr "Nur neue hinzufügen"
|
2810 |
+
|
2811 |
+
#: ../../views/admin/import/confirm.php:282
|
2812 |
+
#, php-format
|
2813 |
+
msgid "update only these taxonomies: %s , leave the rest alone"
|
2814 |
+
msgstr "Aktualisiere nur diese Taxonomien: %s, lasse den Rest in Ruhe"
|
2815 |
+
|
2816 |
+
#: ../../views/admin/import/confirm.php:285
|
2817 |
+
#, php-format
|
2818 |
+
msgid "leave these taxonomies: %s alone, update all others"
|
2819 |
+
msgstr "Lasse diese Taxonomien in Ruhe: %s, aktualisiere alle anderen"
|
2820 |
+
|
2821 |
+
#: ../../views/admin/import/confirm.php:294
|
2822 |
+
#, php-format
|
2823 |
+
msgid "New %ss will be created from records that don't match the above criteria."
|
2824 |
+
msgstr ""
|
2825 |
+
"Neue %ss werden erstellt von den Datensätzen die nicht den oberen Kriterien "
|
2826 |
+
"entsprechen."
|
2827 |
+
|
2828 |
+
#: ../../views/admin/import/confirm.php:300
|
2829 |
+
msgid ""
|
2830 |
+
"High-Speed, Small File Processing enabled. Your import will fail if it takes longer "
|
2831 |
+
"than your server's max_execution_time."
|
2832 |
+
msgstr ""
|
2833 |
+
"High-Speed, Bearbeitung kleiner Dateien aktiviert. Ihr Import wird fehlschlagen wenn "
|
2834 |
+
"es länger dauert als Ihr Server max_execution_time."
|
2835 |
+
|
2836 |
+
#: ../../views/admin/import/confirm.php:302
|
2837 |
+
#, php-format
|
2838 |
+
msgid ""
|
2839 |
+
"Piece By Piece Processing enabled. %s records will be processed each iteration. If "
|
2840 |
+
"it takes longer than your server's max_execution_time to process %s records, your "
|
2841 |
+
"import will fail."
|
2842 |
+
msgstr ""
|
2843 |
+
"Stück für Stück Bearbeitung aktiviert. %s Datensätze werden mit jedem Durchlauf "
|
2844 |
+
"bearbeitet. Wenn es länger dauert als Ihr Server max_execution_time benötigt für %s "
|
2845 |
+
"Datensätze, wird Ihr Import fehlschlagen."
|
2846 |
+
|
2847 |
+
#: ../../views/admin/import/confirm.php:306
|
2848 |
+
#, php-format
|
2849 |
+
msgid "Your file will be split into %s records chunks before processing."
|
2850 |
+
msgstr "Ihre Datei wird geteilt in %s Datensatz Blöcke vor der Bearbeitung."
|
2851 |
+
|
2852 |
+
#: ../../views/admin/import/confirm.php:310
|
2853 |
+
msgid ""
|
2854 |
+
"do_action calls will be disabled in wp_insert_post and wp_insert_attachment during "
|
2855 |
+
"the import."
|
2856 |
+
msgstr ""
|
2857 |
+
"do_action Aufrufe werden deaktiviert in wp_insert_post und wp_insert_attachment "
|
2858 |
+
"während des Imports."
|
2859 |
+
|
2860 |
+
#: ../../views/admin/import/confirm.php:329
|
2861 |
+
msgid "or go back to Step 4"
|
2862 |
+
msgstr "oder gehe zurück zu Schritt 4"
|
2863 |
+
|
2864 |
+
#: ../../views/admin/import/confirm.php:331
|
2865 |
+
msgid "or go back to Manage Imports"
|
2866 |
+
msgstr "oder gehe zurück zu Imports Verwalten"
|
2867 |
+
|
2868 |
+
#: ../../views/admin/import/element.php:23 ../../views/admin/import/element.php:210
|
2869 |
+
msgid "Continue to Step 3"
|
2870 |
+
msgstr "Weiter zu Schritt 3"
|
2871 |
+
|
2872 |
+
#: ../../views/admin/import/element.php:36
|
2873 |
+
msgid "What element are you looking for?"
|
2874 |
+
msgstr "Welches Element suchen Sie?"
|
2875 |
+
|
2876 |
+
#: ../../views/admin/import/element.php:65
|
2877 |
+
#, php-format
|
2878 |
+
msgid "of <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2879 |
+
msgstr "von <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2880 |
+
|
2881 |
+
#: ../../views/admin/import/element.php:83
|
2882 |
+
msgid "Set delimiter for CSV fields:"
|
2883 |
+
msgstr "Setze Beschränkung für CSV Felder:"
|
2884 |
+
|
2885 |
+
#: ../../views/admin/import/element.php:104
|
2886 |
+
#, php-format
|
2887 |
+
msgid ""
|
2888 |
+
"Each <span><<span class=\"root_element\">%s</span>></span> element will be "
|
2889 |
+
"imported into a <span>New %s</span>"
|
2890 |
+
msgstr ""
|
2891 |
+
"Jedes <span><<span class=\"root_element\">%s</span>></span> Element wird "
|
2892 |
+
"importiert in ein <span>neues %s</span>"
|
2893 |
+
|
2894 |
+
#: ../../views/admin/import/element.php:108
|
2895 |
+
#, php-format
|
2896 |
+
msgid ""
|
2897 |
+
"Data in <span><<span class=\"root_element\">%s</span>></span> elements will be "
|
2898 |
+
"imported to <span>%s</span>"
|
2899 |
+
msgstr ""
|
2900 |
+
"Daten in <span><<span class=\"root_element\">%s</span>></span> Element werden "
|
2901 |
+
"Importiert in <span>%s</span>"
|
2902 |
+
|
2903 |
+
#: ../../views/admin/import/element.php:113
|
2904 |
+
msgid ""
|
2905 |
+
"This doesn't look right, try manually selecting a different root element on the left."
|
2906 |
+
msgstr ""
|
2907 |
+
"Das sieht nicht korrekt aus, versuchen Sie auf der linken Seite manuell ein anderes "
|
2908 |
+
"Wurzelelement zu wählen."
|
2909 |
+
|
2910 |
+
#: ../../views/admin/import/element.php:125
|
2911 |
+
msgid "Add Filtering Options"
|
2912 |
+
msgstr "Füge Filteroptionen hinzu"
|
2913 |
+
|
2914 |
+
#: ../../views/admin/import/element.php:132 ../../views/admin/import/element.php: 184
|
2915 |
+
msgid "Element"
|
2916 |
+
msgstr "Element"
|
2917 |
+
|
2918 |
+
#: ../../views/admin/import/element.php:133 ../../views/admin/import/element.php: 185
|
2919 |
+
msgid "Rule"
|
2920 |
+
msgstr "Regel"
|
2921 |
+
|
2922 |
+
#: ../../views/admin/import/element.php:134 ../../views/admin/import/element.php: 186
|
2923 |
+
#: ../../views/admin/import/options/_reimport_options.php:42 ../..
|
2924 |
+
#: /views/admin/import/options/_reimport_template.php:107
|
2925 |
+
#: /views/admin/import/template/_custom_fields_template.php:40
|
2926 |
+
#: /views/admin/import/template/_custom_fields_template.php:74
|
2927 |
+
#: /views/admin/import/template/_custom_fields_template.php:283
|
2928 |
+
#: /views/admin/import/template/_custom_fields_template.php:417
|
2929 |
+
msgid "Value"
|
2930 |
+
msgstr "Wert"
|
2931 |
+
|
2932 |
+
#: ../../views/admin/import/element.php:140
|
2933 |
+
msgid "Select Element"
|
2934 |
+
msgstr "Wähle Element"
|
2935 |
+
|
2936 |
+
#: ../../views/admin/import/element.php:146
|
2937 |
+
msgid "Select Rule"
|
2938 |
+
msgstr "Wähle Regel"
|
2939 |
+
|
2940 |
+
#: ../../views/admin/import/element.php:147
|
2941 |
+
msgid "equals"
|
2942 |
+
msgstr "gleich"
|
2943 |
+
|
2944 |
+
#: ../../views/admin/import/element.php:148
|
2945 |
+
msgid "not equals"
|
2946 |
+
msgstr "ungleich"
|
2947 |
+
|
2948 |
+
#: ../../views/admin/import/element.php:149
|
2949 |
+
msgid "greater than"
|
2950 |
+
msgstr "grösser als"
|
2951 |
+
|
2952 |
+
#: ../../views/admin/import/element.php:150
|
2953 |
+
msgid "equals or greater than"
|
2954 |
+
msgstr "gleich oder grösser als"
|
2955 |
+
|
2956 |
+
#: ../../views/admin/import/element.php:151
|
2957 |
+
msgid "less than"
|
2958 |
+
msgstr "weniger als"
|
2959 |
+
|
2960 |
+
#: ../../views/admin/import/element.php:152
|
2961 |
+
msgid "equals or less than"
|
2962 |
+
msgstr "gleich oder weniger als"
|
2963 |
+
|
2964 |
+
#: ../../views/admin/import/element.php:153
|
2965 |
+
msgid "contains"
|
2966 |
+
msgstr "beinhaltet"
|
2967 |
+
|
2968 |
+
#: ../../views/admin/import/element.php:154
|
2969 |
+
msgid "not contains"
|
2970 |
+
msgstr "beinhaltet nicht"
|
2971 |
+
|
2972 |
+
#: ../../views/admin/import/element.php:155
|
2973 |
+
msgid "is empty"
|
2974 |
+
msgstr "ist leer"
|
2975 |
+
|
2976 |
+
#: ../../views/admin/import/element.php:156
|
2977 |
+
msgid "is not empty"
|
2978 |
+
msgstr "ist nicht leer"
|
2979 |
+
|
2980 |
+
#: ../../views/admin/import/element.php:163
|
2981 |
+
msgid "Add Rule"
|
2982 |
+
msgstr "Regel hinzufügen"
|
2983 |
+
|
2984 |
+
#: ../../views/admin/import/element.php:172 ../..
|
2985 |
+
#: /views/admin/import/options/_settings_template.php:88
|
2986 |
+
msgid "XPath"
|
2987 |
+
msgstr "XPath"
|
2988 |
+
|
2989 |
+
#: ../../views/admin/import/element.php:187
|
2990 |
+
msgid "Condition"
|
2991 |
+
msgstr "Bedingung"
|
2992 |
+
|
2993 |
+
#: ../../views/admin/import/element.php:192
|
2994 |
+
msgid ""
|
2995 |
+
"No filtering options. Add filtering options to only import records matching some "
|
2996 |
+
"specified criteria."
|
2997 |
+
msgstr ""
|
2998 |
+
"Keine Filteroptionen. Füge Filteroptionen hinzu um nur Datensätze zu importieren, "
|
2999 |
+
"die spezifische Kriterien erfüllen."
|
3000 |
+
|
3001 |
+
#: ../../views/admin/import/element.php:197
|
3002 |
+
msgid "Apply Filters To XPath"
|
3003 |
+
msgstr "Wende Filter für XPath an"
|
3004 |
+
|
3005 |
+
#: ../../views/admin/import/element.php:206
|
3006 |
+
msgid "Back to Step 1"
|
3007 |
+
msgstr "Zurück zu Schritt 1"
|
3008 |
+
|
3009 |
+
#: ../../views/admin/import/evaluate.php:3
|
3010 |
+
#, php-format
|
3011 |
+
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> will be imported"
|
3012 |
+
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> wird importiert"
|
3013 |
+
|
3014 |
+
#: ../../views/admin/import/evaluate.php:5
|
3015 |
+
#, php-format
|
3016 |
+
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s will be imported"
|
3017 |
+
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s wird importiert"
|
3018 |
+
|
3019 |
+
#: ../../views/admin/import/evaluate.php:7
|
3020 |
+
msgid "Click an element to select it, or scroll down to add filtering options."
|
3021 |
+
msgstr ""
|
3022 |
+
"Klicken Sie auf ein Element um es auszuwählen, oder scrollen Sie runter um "
|
3023 |
+
"Filteroptionen hinzuzufügen."
|
3024 |
+
|
3025 |
+
#: ../../views/admin/import/evaluate.php:9 ../..
|
3026 |
+
#: /views/admin/import/evaluate_variations.php:5
|
3027 |
+
msgid ""
|
3028 |
+
"<strong>Note</strong>: Highlighting is turned off since can be very slow on large "
|
3029 |
+
"sets of elements."
|
3030 |
+
msgstr ""
|
3031 |
+
"<strong>Note</strong>: Hervorhebung ist ausgeschaltet, da es bei grosser Elementzahl "
|
3032 |
+
"verlangsamen kann."
|
3033 |
+
|
3034 |
+
#: ../../views/admin/import/evaluate_variations.php:3
|
3035 |
+
#, php-format
|
3036 |
+
msgid "Current selection matches <span class=\"matches_count\">%s</span> %s."
|
3037 |
+
msgstr "Gegenwärtige Selektion passt bei <span class=\"matches_count\">%s</span> %s."
|
3038 |
+
|
3039 |
+
#: ../../views/admin/import/evaluate_variations.php:14
|
3040 |
+
#, php-format
|
3041 |
+
msgid "#<strong>%s</strong> out of <strong>%s</strong>"
|
3042 |
+
msgstr "#<strong>%s</strong> aus <strong>%s</strong>"
|
3043 |
+
|
3044 |
+
#: ../../views/admin/import/index.php:69
|
3045 |
+
msgid "First, specify how you want to import your data"
|
3046 |
+
msgstr "Wählen Sie zuerst wie Sie die Daten importieren wollen"
|
3047 |
+
|
3048 |
+
#: ../../views/admin/import/index.php:71
|
3049 |
+
msgid "First, specify previously exported file"
|
3050 |
+
msgstr "Spezifizieren Sie zuerst Ihre exportierte Datei"
|
3051 |
+
|
3052 |
+
#: ../../views/admin/import/index.php:72
|
3053 |
+
msgid ""
|
3054 |
+
"The data in this file can be modified, but the structure of the file (column/element "
|
3055 |
+
"names) should not change."
|
3056 |
+
msgstr ""
|
3057 |
+
"Die Daten in dieser Datei können geändert werden, aber die Struktur (Spalte/Element "
|
3058 |
+
"Namen) sollten sich nicht ändern."
|
3059 |
+
|
3060 |
+
#: ../../views/admin/import/index.php:76 ../..
|
3061 |
+
#: /views/admin/import/options/_import_file.php:74
|
3062 |
+
msgid "Upload a file"
|
3063 |
+
msgstr "Datei hochladen"
|
3064 |
+
|
3065 |
+
#: ../../views/admin/import/index.php:80 ../..
|
3066 |
+
#: /views/admin/import/options/_import_file.php:78
|
3067 |
+
msgid "Download from URL"
|
3068 |
+
msgstr "Download von URL"
|
3069 |
+
|
3070 |
+
#: ../../views/admin/import/index.php:84 ../..
|
3071 |
+
#: /views/admin/import/options/_import_file.php:82
|
3072 |
+
msgid "Use existing file"
|
3073 |
+
msgstr "Nutze bestehende Datei"
|
3074 |
+
|
3075 |
+
#: ../../views/admin/import/index.php:94 ../..
|
3076 |
+
#: /views/admin/import/options/_import_file.php:92
|
3077 |
+
msgid "Click here to select file from your computer..."
|
3078 |
+
msgstr "Hier klicken um Datei von Ihrem Computer zu wählen..."
|
3079 |
+
|
3080 |
+
#: ../../views/admin/import/index.php:112
|
3081 |
+
msgid ""
|
3082 |
+
"<strong>Hint:</strong> After you create this import, you can schedule it to run "
|
3083 |
+
"automatically, on a pre-defined schedule, with cron jobs. If anything in your file "
|
3084 |
+
"has changed, WP All Import can update your site with the changed data automatically."
|
3085 |
+
msgstr ""
|
3086 |
+
"<strong>Hint:</strong> Nachdem Sie diesen Import erstellt haben, können Sie mit cron "
|
3087 |
+
"Jobs planen ihn automatisch auszuführen. Sollte sich in Ihrer Datei etwas ändern, "
|
3088 |
+
"kann WP All Import Ihre Seite mit den geänderten Daten automatisch aktualisieren."
|
3089 |
+
|
3090 |
+
#: ../../views/admin/import/index.php:151 ../..
|
3091 |
+
#: /views/admin/import/options/_import_file.php:144
|
3092 |
+
msgid "Select a previously uploaded file"
|
3093 |
+
msgstr "Wählen Sie eine vorher Hochgeladene Datei"
|
3094 |
+
|
3095 |
+
#: ../../views/admin/import/index.php:160 ../..
|
3096 |
+
#: /views/admin/import/options/_import_file.php:156
|
3097 |
+
#, php-format
|
3098 |
+
msgid "Upload files to <strong>%s</strong> and they will appear in this list"
|
3099 |
+
msgstr ""
|
3100 |
+
"Laden Sie eine Datei in <strong>%s</strong> hoch und sie erscheint in dieser Liste"
|
3101 |
+
|
3102 |
+
#: ../../views/admin/import/index.php:174
|
3103 |
+
msgid "Import data from this file into..."
|
3104 |
+
msgstr "Importiere Daten von dieser Datei in..."
|
3105 |
+
|
3106 |
+
#: ../../views/admin/import/index.php:178
|
3107 |
+
msgid "New Items"
|
3108 |
+
msgstr "Neue Artikel"
|
3109 |
+
|
3110 |
+
#: ../../views/admin/import/index.php:182
|
3111 |
+
msgid "Existing Items"
|
3112 |
+
msgstr "Bestehende Artikel"
|
3113 |
+
|
3114 |
+
#: ../../views/admin/import/index.php:204
|
3115 |
+
msgid "Create new"
|
3116 |
+
msgstr "Erstelle neue"
|
3117 |
+
|
3118 |
+
#: ../../views/admin/import/index.php:205
|
3119 |
+
msgid "Import to existing"
|
3120 |
+
msgstr "Importiere in bestehende"
|
3121 |
+
|
3122 |
+
#: ../../views/admin/import/index.php:208
|
3123 |
+
msgid "for each record in my data file."
|
3124 |
+
msgstr "für jeden Datensatz in der Datei."
|
3125 |
+
|
3126 |
+
#: ../../views/admin/import/index.php:209
|
3127 |
+
msgid "and update some or all of their data."
|
3128 |
+
msgstr "und aktualisiere einige von den Daten."
|
3129 |
+
|
3130 |
+
#: ../../views/admin/import/index.php:238
|
3131 |
+
msgid ""
|
3132 |
+
"In Step 4, you will map the records in your file to the existing items on your site "
|
3133 |
+
"and specify which data points will be updated and which will be left alone."
|
3134 |
+
msgstr ""
|
3135 |
+
"In Schritt 4 können Sie die Datensätze Ihrer Datei mit den existierenden Artikeln "
|
3136 |
+
"Ihrer Seite zusammenführen und bestimmen welche Daten aktualisiert werden und welche "
|
3137 |
+
"nicht."
|
3138 |
+
|
3139 |
+
#: ../../views/admin/import/index.php:239
|
3140 |
+
msgid ""
|
3141 |
+
"The Existing Items option is commonly used to update existing products with new "
|
3142 |
+
"stock quantities while leaving all their other data alone, update properties on your "
|
3143 |
+
"site with new pricing, etc."
|
3144 |
+
msgstr ""
|
3145 |
+
"Die bestehende Artikel Option wird normalerweise genutzt um bestehende Produkte mit "
|
3146 |
+
"neuen Zahlen für die Lagerhaltung zu aktualisieren, während die anderen Daten "
|
3147 |
+
"unberührt bleiben. Aktualisieren Sie andere Eigenschaften wie neue Preise, etc."
|
3148 |
+
|
3149 |
+
#: ../../views/admin/import/index.php:280
|
3150 |
+
msgid "Skip to Step 4"
|
3151 |
+
msgstr "Überspringe zu Schritt 4"
|
3152 |
+
|
3153 |
+
#: ../../views/admin/import/index.php:281
|
3154 |
+
msgid "Continue to Step 2"
|
3155 |
+
msgstr "Weiter zu Schritt 2"
|
3156 |
+
|
3157 |
+
#: ../../views/admin/import/options.php:88 ../..
|
3158 |
+
#: /views/admin/import/options/_reimport_template.php:14
|
3159 |
+
#: /views/admin/import/options/_reimport_template.php:81
|
3160 |
+
msgid "Record Matching"
|
3161 |
+
msgstr "Datensatz Abgleich"
|
3162 |
+
|
3163 |
+
#: ../../views/admin/import/options.php:91
|
3164 |
+
msgid ""
|
3165 |
+
"Record Matching is how WP All Import matches records in your file with posts that "
|
3166 |
+
"already exist WordPress."
|
3167 |
+
msgstr ""
|
3168 |
+
"Datensatz Abgleich ist der Vorgang von WP All Import in dem Datensätze in Ihrer "
|
3169 |
+
"Datei mit bereits bestehenden Posts in WordPress abgeglichen werden."
|
3170 |
+
|
3171 |
+
#: ../../views/admin/import/options.php:95
|
3172 |
+
msgid ""
|
3173 |
+
"Record Matching is most commonly used to tell WP All Import how to match up records "
|
3174 |
+
"in your file with posts WP All Import has already created on your site, so that if "
|
3175 |
+
"your file is updated with new data, WP All Import can update your posts accordingly."
|
3176 |
+
msgstr ""
|
3177 |
+
"Datensatz Abgleich wird meistens genutzt um WP All Import mitzuteilen wie die "
|
3178 |
+
"Datensätze in Ihrer Datei mit den Posts abgeglichen werden sollen, die WP All Import "
|
3179 |
+
"bereits auf Ihrer Seite erstellt hat. So kann WP All Import Änderungen in Ihrer "
|
3180 |
+
"Datei direkt in die Posts übertragen."
|
3181 |
+
|
3182 |
+
#: ../../views/admin/import/options.php:100
|
3183 |
+
msgid "AUTOMATIC RECORD MATCHING"
|
3184 |
+
msgstr "AUTOMATISCHER DATENSATZ ABGLEICH"
|
3185 |
+
|
3186 |
+
#: ../../views/admin/import/options.php:103
|
3187 |
+
msgid ""
|
3188 |
+
"Automatic Record Matching allows WP All Import to update records that were imported "
|
3189 |
+
"or updated during the last run of this same import."
|
3190 |
+
msgstr ""
|
3191 |
+
"Automatischer Datensatz Abgleich erlaubt WP All Import die Datensätze zu "
|
3192 |
+
"aktualisieren die während dem letzten Import importiert wurden."
|
3193 |
+
|
3194 |
+
#: ../../views/admin/import/options.php:107
|
3195 |
+
msgid ""
|
3196 |
+
"Your unique key must be UNIQUE for each record in your feed. Make sure you get it "
|
3197 |
+
"right - you can't change it later. You'll have to re-create your import."
|
3198 |
+
msgstr ""
|
3199 |
+
"Ihr einzigartiger Schlüssel muss EINZIGARTIG in jedem Datensatz Ihres Feeds sein. "
|
3200 |
+
"Stellen Sie sicher dass Sie es korrekt haben - Sie können es später ändern. Sie "
|
3201 |
+
"werden Ihren Import neu erstellen müssen."
|
3202 |
+
|
3203 |
+
#: ../../views/admin/import/options.php:112
|
3204 |
+
msgid "MANUAL RECORD MATCHING"
|
3205 |
+
msgstr "MANUELLER DATENSATZ ABGLEICH"
|
3206 |
+
|
3207 |
+
#: ../../views/admin/import/options.php:115
|
3208 |
+
msgid ""
|
3209 |
+
"Manual record matching allows WP All Import to update any records, even records that "
|
3210 |
+
"were not imported with WP All Import, or are part of a different import."
|
3211 |
+
msgstr ""
|
3212 |
+
"Manueller Datensatz Abgleich erlaubt WP All Import alle Datensätze zu aktualisieren, "
|
3213 |
+
"sogar Datensätze die nicht von WP All Import importiert wurden, oder die Teil eines "
|
3214 |
+
"anderen Imports sind."
|
3215 |
+
|
3216 |
+
#: ../../views/admin/import/preview.php:6 ../../views/admin/import/preview_images.
|
3217 |
+
#: php:6 ../../views/admin/import/preview_prices.php:6 ../..
|
3218 |
+
#: /views/admin/import/preview_taxonomies.php:6 ../../views/admin/import/tag.php:8
|
3219 |
+
#, php-format
|
3220 |
+
msgid ""
|
3221 |
+
"<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></"
|
3222 |
+
"strong><span class=\"out_of\"> of <strong class=\"pmxi_count\">%s</strong></span>"
|
3223 |
+
msgstr ""
|
3224 |
+
"<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></"
|
3225 |
+
"strong><span class=\"out_of\"> von <strong class=\"pmxi_count\">%s</strong></span>"
|
3226 |
+
|
3227 |
+
#: ../../views/admin/import/preview_images.php:60
|
3228 |
+
msgid "Retrieving images..."
|
3229 |
+
msgstr "Bilder wiederherstellen..."
|
3230 |
+
|
3231 |
+
#: ../../views/admin/import/preview_images.php:64
|
3232 |
+
msgid "WP All Import will import images from the following file paths:"
|
3233 |
+
msgstr "WP All Import wird Bilder von folgenden Pfaden importieren:"
|
3234 |
+
|
3235 |
+
#: ../../views/admin/import/preview_images.php:65
|
3236 |
+
msgid "Please ensure the images exists at these file paths"
|
3237 |
+
msgstr "Bitte gehen Sie sicher, dass die Bilder bei diesen Pfaden existieren"
|
3238 |
+
|
3239 |
+
#: ../../views/admin/import/preview_images.php:73 ../..
|
3240 |
+
#: /views/admin/import/preview_images.php:115
|
3241 |
+
#: /views/admin/import/preview_images.php:153
|
3242 |
+
msgid "Here are the above URLs, in <img> tags. "
|
3243 |
+
msgstr "Hier sind die obigen URLs in <img> tags. "
|
3244 |
+
|
3245 |
+
#: ../../views/admin/import/preview_images.php:140
|
3246 |
+
msgid "Download in progress..."
|
3247 |
+
msgstr "Herunterladen in Fortschritt..."
|
3248 |
+
|
3249 |
+
#: ../../views/admin/import/preview_images.php:144
|
3250 |
+
msgid "WP All Import will attempt to import images from the following URLs:"
|
3251 |
+
msgstr "WP All Import wird versuchen die Bilder von folgender URL zu importieren:"
|
3252 |
+
|
3253 |
+
#: ../../views/admin/import/preview_images.php:145
|
3254 |
+
msgid "Please check the URLs to ensure they point to valid images"
|
3255 |
+
msgstr ""
|
3256 |
+
"Bitte kontrollieren Sie die URL um sicher zu gehen dass sie auf korrekte Bilder "
|
3257 |
+
"zeigen"
|
3258 |
+
|
3259 |
+
#: ../../views/admin/import/preview_images.php:168
|
3260 |
+
msgid "Images not found for current record."
|
3261 |
+
msgstr "Keine Bilder gefunden für diesen Datensatz."
|
3262 |
+
|
3263 |
+
#: ../../views/admin/import/preview_prices.php:16
|
3264 |
+
msgid "Preview Prices"
|
3265 |
+
msgstr "Vorschau Preis"
|
3266 |
+
|
3267 |
+
#: ../../views/admin/import/preview_prices.php:18
|
3268 |
+
msgid "Regular Price"
|
3269 |
+
msgstr "Regulärer Preis"
|
3270 |
+
|
3271 |
+
#: ../../views/admin/import/preview_prices.php:19
|
3272 |
+
msgid "Sale Price"
|
3273 |
+
msgstr "Angebotspreis"
|
3274 |
+
|
3275 |
+
#: ../../views/admin/import/preview_taxonomies.php:16
|
3276 |
+
msgid "Test Taxonomies Hierarchy"
|
3277 |
+
msgstr "Teste Taxonomie Hierarchie "
|
3278 |
+
|
3279 |
+
#: ../../views/admin/import/process.php:21
|
3280 |
+
msgid "Import <span id=\"status\">in Progress</span>"
|
3281 |
+
msgstr "Import <span id=\"status\">in Bearbeitung</span>"
|
3282 |
+
|
3283 |
+
#: ../../views/admin/import/process.php:22
|
3284 |
+
msgid ""
|
3285 |
+
"Importing may take some time. Please do not close your browser or refresh the page "
|
3286 |
+
"until the process is complete."
|
3287 |
+
msgstr ""
|
3288 |
+
"Der Import wird einige Zeit benötigen. Bitte nicht den Browser schliessen oder "
|
3289 |
+
"aktualisieren während die Bearbeitung läuft."
|
3290 |
+
|
3291 |
+
#: ../../views/admin/import/process.php:29
|
3292 |
+
msgid "Time Elapsed"
|
3293 |
+
msgstr "Zeit vergangen"
|
3294 |
+
|
3295 |
+
#: ../../views/admin/import/process.php:31
|
3296 |
+
msgid "Created"
|
3297 |
+
msgstr "Erstellt"
|
3298 |
+
|
3299 |
+
#: ../../views/admin/import/process.php:31
|
3300 |
+
msgid "Updated"
|
3301 |
+
msgstr "Aktualisiert"
|
3302 |
+
|
3303 |
+
#: ../../views/admin/import/process.php:31
|
3304 |
+
msgid "of"
|
3305 |
+
msgstr "von"
|
3306 |
+
|
3307 |
+
#: ../../views/admin/import/process.php:31 ../..
|
3308 |
+
#: /views/admin/import/options/_settings_template.php:23
|
3309 |
+
msgid "records"
|
3310 |
+
msgstr "Datensätze"
|
3311 |
+
|
3312 |
+
#: ../../views/admin/import/process.php:38
|
3313 |
+
msgid "Import Complete!"
|
3314 |
+
msgstr "Import abgeschlossen"
|
3315 |
+
|
3316 |
+
#: ../../views/admin/import/process.php:40
|
3317 |
+
msgid "Duplicate records detected during import"
|
3318 |
+
msgstr "Datensatz Duplikate während des Imports festgestellt"
|
3319 |
+
|
3320 |
+
#: ../../views/admin/import/process.php:40
|
3321 |
+
msgid ""
|
3322 |
+
"The unique identifier is how WP All Import tells two items in your import file "
|
3323 |
+
"apart. If it is the same for two items, then the first item will be overwritten when "
|
3324 |
+
"the second is imported."
|
3325 |
+
msgstr ""
|
3326 |
+
"Die einzigartige ID ermöglicht es WP All Import zwei Artikel in Ihrer Datei "
|
3327 |
+
"unterscheiden zu können. Wenn dieser für zwei Artikel gleich ist, dann wird der "
|
3328 |
+
"erste überschrieben wenn der zweite importiert wird."
|
3329 |
+
|
3330 |
+
#: ../../views/admin/import/process.php:42
|
3331 |
+
#, php-format
|
3332 |
+
msgid ""
|
3333 |
+
"The file you are importing has %s records, but WP All Import only created <span "
|
3334 |
+
"class=\"inserted_count\"></span> %s. It detected the other records in your file as "
|
3335 |
+
"duplicates. This could be because they actually are duplicates or it could be "
|
3336 |
+
"because your Unique Identifier is not unique for each record.<br><br>If your import "
|
3337 |
+
"file has no duplicates and you want to import all %s records, you should delete "
|
3338 |
+
"everything that was just imported and then edit your Unique Identifier so it's "
|
3339 |
+
"unique for each item."
|
3340 |
+
msgstr ""
|
3341 |
+
"Die Datei die Sie importieren hat %s Datensätze, aber WP All Import erstellte nur "
|
3342 |
+
"<span class=\"inserted_count\"></span> %s. Es erkannte die anderen Datensätze in "
|
3343 |
+
"Ihrer Datei als Duplikate. Entweder weil es Duplikate sind oder weil Ihre "
|
3344 |
+
"einzigartige ID nicht einzigartig für jeden Datensatz ist. <br><br>Wenn Ihre Import "
|
3345 |
+
"Datei keine Duplikate hat und Sie alle Datensätze %s importieren wollen, sollten Sie "
|
3346 |
+
"alles Löschen was gerade importiert wurde und dann Ihre einzigartige ID ändern, so "
|
3347 |
+
"dass dieser einzigartig für jeden Artikel ist."
|
3348 |
+
|
3349 |
+
#: ../../views/admin/import/process.php:44
|
3350 |
+
msgid "Delete & Edit"
|
3351 |
+
msgstr "Löschen & Ändern"
|
3352 |
+
|
3353 |
+
#: ../../views/admin/import/process.php:46
|
3354 |
+
#, php-format
|
3355 |
+
msgid ""
|
3356 |
+
"WP All Import successfully imported your file <span>%s</span> into your WordPress "
|
3357 |
+
"installation!"
|
3358 |
+
msgstr ""
|
3359 |
+
"WP All Import hat Ihre Datei <span>%s</span> erfolgreich in Ihre WordPress "
|
3360 |
+
"Installation importiert!"
|
3361 |
+
|
3362 |
+
#: ../../views/admin/import/process.php:48 ../../views/admin/import/process.php:50
|
3363 |
+
#, php-format
|
3364 |
+
msgid ""
|
3365 |
+
"There were <span class=\"wpallimport-errors-count\">%s</span> errors and <span class="
|
3366 |
+
"\"wpallimport-warnings-count\">%s</span> warnings in this import. You can see these "
|
3367 |
+
"in the import log."
|
3368 |
+
msgstr ""
|
3369 |
+
"Es gab <span class=\"wpallimport-errors-count\">%s</span> Fehler und <span class="
|
3370 |
+
"\"wpallimport-warnings-count\">%s</span> Warnungen in diesem Import. Sie können "
|
3371 |
+
"diese im Import Log sehen."
|
3372 |
+
|
3373 |
+
#: ../../views/admin/import/process.php:53
|
3374 |
+
msgid "View Logs"
|
3375 |
+
msgstr "Logs ansehen"
|
3376 |
+
|
3377 |
+
#: ../../views/admin/import/process.php:89
|
3378 |
+
msgid "Log"
|
3379 |
+
msgstr "Log"
|
3380 |
+
|
3381 |
+
#: ../../views/admin/import/tag.php:5
|
3382 |
+
msgid "Elements"
|
3383 |
+
msgstr "Elemente"
|
3384 |
+
|
3385 |
+
#: ../../views/admin/import/tag.php:27
|
3386 |
+
msgid "History file not found. Probably you are using wrong encoding."
|
3387 |
+
msgstr "Chronik Datei nicht gefunden. Eventuell nutzen Sie eine andere Codierung."
|
3388 |
+
|
3389 |
+
#: ../../views/admin/import/template.php:41
|
3390 |
+
msgid "Title & Content"
|
3391 |
+
msgstr "Titel & Inhalt"
|
3392 |
+
|
3393 |
+
#: ../../views/admin/import/template.php:48
|
3394 |
+
msgid "Drag & drop any element on the right to set the title."
|
3395 |
+
msgstr "Drag & drop ein Element von der rechten Seite um den Titel zu setzen."
|
3396 |
+
|
3397 |
+
#: ../../views/admin/import/template.php:67
|
3398 |
+
msgid "WooCommerce Short Description"
|
3399 |
+
msgstr "WooCommerce Kurzbeschreibung"
|
3400 |
+
|
3401 |
+
#: ../../views/admin/import/template.php:71 ../..
|
3402 |
+
#: /views/admin/import/template/_taxonomies_template.php:138
|
3403 |
+
msgid "Preview"
|
3404 |
+
msgstr "Vorschau"
|
3405 |
+
|
3406 |
+
#: ../../views/admin/import/template.php:77
|
3407 |
+
msgid "Advanced Options"
|
3408 |
+
msgstr "Erweiterte Optionen"
|
3409 |
+
|
3410 |
+
#: ../../views/admin/import/template.php:84
|
3411 |
+
msgid "Keep line breaks from file"
|
3412 |
+
msgstr "Behalte Zeilenumbruch der Datei"
|
3413 |
+
|
3414 |
+
#: ../../views/admin/import/template.php:89
|
3415 |
+
msgid "Decode HTML entities with <b>html_entity_decode</b>"
|
3416 |
+
msgstr "Dekodiere HTML Entitäten mit <b>html_entity_decode</b>"
|
3417 |
+
|
3418 |
+
#: ../../views/admin/import/template.php:182
|
3419 |
+
msgid "Save settings as a template"
|
3420 |
+
msgstr "Speichere Einstellungen als Vorlage"
|
3421 |
+
|
3422 |
+
#: ../../views/admin/import/template.php:185
|
3423 |
+
msgid "Template name..."
|
3424 |
+
msgstr "Vorlagen Name..."
|
3425 |
+
|
3426 |
+
#: ../../views/admin/import/template.php:190
|
3427 |
+
msgid "Load Template..."
|
3428 |
+
msgstr "Lade Vorlage..."
|
3429 |
+
|
3430 |
+
#: ../../views/admin/import/template.php:210
|
3431 |
+
msgid "Back to Step 2"
|
3432 |
+
msgstr "Zurück zu Schritt 2"
|
3433 |
+
|
3434 |
+
#: ../../views/admin/import/template.php:212 ../..
|
3435 |
+
#: /views/admin/import/options/_buttons_template.php:21
|
3436 |
+
msgid "Back to Manage Imports"
|
3437 |
+
msgstr "Zurück zur Import Verwaltung"
|
3438 |
+
|
3439 |
+
#: ../../views/admin/import/options/_buttons_template.php:2
|
3440 |
+
msgid "To run the import, click Run Import on the Manage Imports page."
|
3441 |
+
msgstr ""
|
3442 |
+
"Um den Import zu starten, klicken Sie auf Starte Import auf der Imports verwalten "
|
3443 |
+
"Seite."
|
3444 |
+
|
3445 |
+
#: ../../views/admin/import/options/_buttons_template.php:11
|
3446 |
+
msgid "Back to Step 3"
|
3447 |
+
msgstr "Zurück zu Schritt 3"
|
3448 |
+
|
3449 |
+
#: ../../views/admin/import/options/_buttons_template.php:15
|
3450 |
+
msgid "Save Only"
|
3451 |
+
msgstr "Nur Speichern"
|
3452 |
+
|
3453 |
+
#: ../../views/admin/import/options/_buttons_template.php:18
|
3454 |
+
msgid "Continue"
|
3455 |
+
msgstr "Weiter"
|
3456 |
+
|
3457 |
+
#: ../../views/admin/import/options/_buttons_template.php:22
|
3458 |
+
msgid "Save Import Configuration"
|
3459 |
+
msgstr "Speichere Import Einstellungen"
|
3460 |
+
|
3461 |
+
#: ../../views/admin/import/options/_import_file.php:62
|
3462 |
+
msgid "Import File"
|
3463 |
+
msgstr "Importiere Datei"
|
3464 |
+
|
3465 |
+
#: ../../views/admin/import/options/_import_file.php:71
|
3466 |
+
msgid "Specify the location of the file to use for future runs of this import."
|
3467 |
+
msgstr "Bestimmen Sie den Ort der Datei für zukünftige Läufe dieses Imports."
|
3468 |
+
|
3469 |
+
#: ../../views/admin/import/options/_import_file.php:106
|
3470 |
+
msgid "Upload"
|
3471 |
+
msgstr "Hochladen"
|
3472 |
+
|
3473 |
+
#: ../../views/admin/import/options/_reimport_options.php:2
|
3474 |
+
msgid "When WP All Import finds new or changed data..."
|
3475 |
+
msgstr "Wenn WP All Import neue oder geänderte Daten findet..."
|
3476 |
+
|
3477 |
+
#: ../../views/admin/import/options/_reimport_options.php:9
|
3478 |
+
msgid "Create new posts from records newly present in your file"
|
3479 |
+
msgstr "Erstelle neue Posts von Datensätzen die neu sind in Ihrer Datei"
|
3480 |
+
|
3481 |
+
#: ../../views/admin/import/options/_reimport_options.php:11
|
3482 |
+
msgid ""
|
3483 |
+
"New posts will only be created when ID column is present and value in ID column is "
|
3484 |
+
"unique."
|
3485 |
+
msgstr ""
|
3486 |
+
"Neue Posts werden nur erstellt wenn die spalte ID vorhanden ist und der Wert in der "
|
3487 |
+
"Spalte ID einzigartig ist."
|
3488 |
+
|
3489 |
+
#: ../../views/admin/import/options/_reimport_options.php:18
|
3490 |
+
msgid "Delete posts that are no longer present in your file"
|
3491 |
+
msgstr "Lösche Posts die nicht länger vorhanden sind in der Datei"
|
3492 |
+
|
3493 |
+
#: ../../views/admin/import/options/_reimport_options.php:27
|
3494 |
+
msgid "Do not remove attachments"
|
3495 |
+
msgstr "Anhänge nicht entfernen"
|
3496 |
+
|
3497 |
+
#: ../../views/admin/import/options/_reimport_options.php:32
|
3498 |
+
msgid "Do not remove images"
|
3499 |
+
msgstr "Bilder nicht entfernen"
|
3500 |
+
|
3501 |
+
#: ../../views/admin/import/options/_reimport_options.php:37
|
3502 |
+
msgid "Instead of deletion, set Custom Field"
|
3503 |
+
msgstr "Anstatt zu löschen, setze individuelles Feld"
|
3504 |
+
|
3505 |
+
#: ../../views/admin/import/options/_reimport_options.php:40 ../..
|
3506 |
+
#: /views/admin/import/options/_reimport_template.php:105
|
3507 |
+
#: /views/admin/import/template/_custom_fields_template.php:39
|
3508 |
+
msgid "Name"
|
3509 |
+
msgstr "Name"
|
3510 |
+
|
3511 |
+
#: ../../views/admin/import/options/_reimport_options.php:50
|
3512 |
+
msgid "Instead of deletion, change post status to Draft"
|
3513 |
+
msgstr "Anstatt zu löschen, ändere den Status des Posts auf Entwurf"
|
3514 |
+
|
3515 |
+
#: ../../views/admin/import/options/_reimport_options.php:57
|
3516 |
+
msgid "Update existing posts with changed data in your file"
|
3517 |
+
msgstr "Aktualisiere existierende Posts mit geänderten Daten in Ihrer Datei"
|
3518 |
+
|
3519 |
+
#: ../../views/admin/import/options/_reimport_options.php:63
|
3520 |
+
msgid "Update all data"
|
3521 |
+
msgstr "Aktualisiere alle Daten"
|
3522 |
+
|
3523 |
+
#: ../../views/admin/import/options/_reimport_options.php:66
|
3524 |
+
msgid "Choose which data to update"
|
3525 |
+
msgstr "Wählen Sie welch Daten aktualisiert werden sollen"
|
3526 |
+
|
3527 |
+
#: ../../views/admin/import/options/_reimport_options.php:71
|
3528 |
+
msgid "Post status"
|
3529 |
+
msgstr "Post Status"
|
3530 |
+
|
3531 |
+
#: ../../views/admin/import/options/_reimport_options.php:72
|
3532 |
+
msgid "Hint: uncheck this box to keep trashed posts in the trash."
|
3533 |
+
msgstr ""
|
3534 |
+
"Hinweis: Deaktivieren Sie dieses Kästchen, um Posts im Papierkorb im Papierkorb zu "
|
3535 |
+
"lassen."
|
3536 |
+
|
3537 |
+
#: ../../views/admin/import/options/_reimport_options.php:77 ../..
|
3538 |
+
#: /views/admin/import/options/_reimport_template.php:98
|
3539 |
+
msgid "Title"
|
3540 |
+
msgstr "Titel"
|
3541 |
+
|
3542 |
+
#: ../../views/admin/import/options/_reimport_options.php:82
|
3543 |
+
msgid "Author"
|
3544 |
+
msgstr "Autor "
|
3545 |
+
|
3546 |
+
#: ../../views/admin/import/options/_reimport_options.php:87 ../..
|
3547 |
+
#: /views/admin/import/template/_other_template.php:279
|
3548 |
+
msgid "Slug"
|
3549 |
+
msgstr "Slug"
|
3550 |
+
|
3551 |
+
#: ../../views/admin/import/options/_reimport_options.php:92 ../..
|
3552 |
+
#: /views/admin/import/options/_reimport_template.php:100
|
3553 |
+
msgid "Content"
|
3554 |
+
msgstr "Inhalt"
|
3555 |
+
|
3556 |
+
#: ../../views/admin/import/options/_reimport_options.php:97
|
3557 |
+
msgid "Excerpt/Short Description"
|
3558 |
+
msgstr "Auszug / Kurzbeschreibung"
|
3559 |
+
|
3560 |
+
#: ../../views/admin/import/options/_reimport_options.php:102
|
3561 |
+
msgid "Dates"
|
3562 |
+
msgstr "Datum"
|
3563 |
+
|
3564 |
+
#: ../../views/admin/import/options/_reimport_options.php:107
|
3565 |
+
msgid "Menu order"
|
3566 |
+
msgstr "Menü Reihenfolge"
|
3567 |
+
|
3568 |
+
#: ../../views/admin/import/options/_reimport_options.php:112
|
3569 |
+
msgid "Parent post"
|
3570 |
+
msgstr "Eltern post"
|
3571 |
+
|
3572 |
+
#: ../../views/admin/import/options/_reimport_options.php:122
|
3573 |
+
msgid "Attachments"
|
3574 |
+
msgstr "Anhänge"
|
3575 |
+
|
3576 |
+
#: ../../views/admin/import/options/_reimport_options.php:136
|
3577 |
+
msgid ""
|
3578 |
+
"This will keep the featured image if it exists, so you could modify the post image "
|
3579 |
+
"manually, and then do a reimport, and it would not overwrite the manually modified "
|
3580 |
+
"post image."
|
3581 |
+
msgstr ""
|
3582 |
+
"Dies wird die featured Bilder behalten wenn diese existieren, so können Sie die "
|
3583 |
+
"Bilder der Posts manuell ändern und dann einen Reimport machen. Dies wird die "
|
3584 |
+
"manuell geänderten Bilder nicht überschreiben."
|
3585 |
+
|
3586 |
+
#: ../../views/admin/import/options/_reimport_options.php:140
|
3587 |
+
msgid "Update all images"
|
3588 |
+
msgstr "Aktualisiere alle Bilder "
|
3589 |
+
|
3590 |
+
#: ../../views/admin/import/options/_reimport_options.php:146
|
3591 |
+
msgid "Don't touch existing images, append new images"
|
3592 |
+
msgstr "Fasse existierende Bilder nicht an, hänge neue Bilder an"
|
3593 |
+
|
3594 |
+
#: ../../views/admin/import/options/_reimport_options.php:155 ../..
|
3595 |
+
#: /views/admin/import/template/_custom_fields_template.php:5
|
3596 |
+
msgid "Custom Fields"
|
3597 |
+
msgstr "Individuelle Felder"
|
3598 |
+
|
3599 |
+
#: ../../views/admin/import/options/_reimport_options.php:156
|
3600 |
+
msgid ""
|
3601 |
+
"If Keep Custom Fields box is checked, it will keep all Custom Fields, and add any "
|
3602 |
+
"new Custom Fields specified in Custom Fields section, as long as they do not "
|
3603 |
+
"overwrite existing fields. If 'Only keep this Custom Fields' is specified, it will "
|
3604 |
+
"only keep the specified fields."
|
3605 |
+
msgstr ""
|
3606 |
+
"Wenn die Box: Behalte individuelle Felder markiert ist, wird es alle individuellen "
|
3607 |
+
"Felder behalten und neue hinzufügen die im Abschnitt individuelle Felder bestimmt "
|
3608 |
+
"wurden, solange sie bestehende Felder nicht überschreiben. Wenn 'Nur dieses "
|
3609 |
+
"individuelle Feld behalten' markiert ist, wird es nur die bestimmten Felder behalten."
|
3610 |
+
|
3611 |
+
#: ../../views/admin/import/options/_reimport_options.php:160
|
3612 |
+
msgid "Update all Custom Fields"
|
3613 |
+
msgstr "Aktualisiere alle individuellen Felder"
|
3614 |
+
|
3615 |
+
#: ../../views/admin/import/options/_reimport_options.php:164
|
3616 |
+
msgid "Update only these Custom Fields, leave the rest alone"
|
3617 |
+
msgstr "Aktualisiere nur diese individuellen Felder, lasse den Rest in Ruhe"
|
3618 |
+
|
3619 |
+
#: ../../views/admin/import/options/_reimport_options.php:172
|
3620 |
+
msgid "Leave these fields alone, update all other Custom Fields"
|
3621 |
+
msgstr "Lasse den Rest in Ruhe, aktualisiere alle anderen individuellen Felder"
|
3622 |
+
|
3623 |
+
#: ../../views/admin/import/options/_reimport_options.php:184
|
3624 |
+
msgid "Taxonomies (incl. Categories and Tags)"
|
3625 |
+
msgstr "Taxonomien ( incl. Kategorien und Tags)"
|
3626 |
+
|
3627 |
+
#: ../../views/admin/import/options/_reimport_options.php:198
|
3628 |
+
msgid "Leave these taxonomies alone, update all others"
|
3629 |
+
msgstr "Lasse die Taxonomien in Ruhe, aktualisiere alle anderen"
|
3630 |
+
|
3631 |
+
#: ../../views/admin/import/options/_reimport_options.php:206
|
3632 |
+
msgid "Update only these taxonomies, leave the rest alone"
|
3633 |
+
msgstr "Aktualisiere nur diese Taxonomien, lasse den Rest in Ruhe"
|
3634 |
+
|
3635 |
+
#: ../../views/admin/import/options/_reimport_options.php:214
|
3636 |
+
msgid "Remove existing taxonomies, add new taxonomies"
|
3637 |
+
msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
|
3638 |
+
|
3639 |
+
#: ../../views/admin/import/options/_reimport_options.php:218
|
3640 |
+
msgid "Only add new"
|
3641 |
+
msgstr "Nur neue hinzufügen"
|
3642 |
+
|
3643 |
+
#: ../../views/admin/import/options/_reimport_template.php:22
|
3644 |
+
msgid "Choose how exported data will be re-imported."
|
3645 |
+
msgstr "Wähle wie exportierte Daten erneut importiert werden."
|
3646 |
+
|
3647 |
+
#: ../../views/admin/import/options/_reimport_template.php:28
|
3648 |
+
#, php-format
|
3649 |
+
msgid "WP All Import will create new %s for each unique record in your file."
|
3650 |
+
msgstr ""
|
3651 |
+
"WP All Import wird neue %s erstellen, für jeden einzigartigen Datensatz in Ihrer "
|
3652 |
+
"Datei."
|
3653 |
+
|
3654 |
+
#: ../../views/admin/import/options/_reimport_template.php:41
|
3655 |
+
#, php-format
|
3656 |
+
msgid ""
|
3657 |
+
"WP All Import will associate records in your file with %s it has already created "
|
3658 |
+
"from previous runs of this import based on the Unique Identifier."
|
3659 |
+
msgstr ""
|
3660 |
+
"WP All Import verknüpft die Datensätze in Ihrer Datei mit %s die es bereits bei "
|
3661 |
+
"früheren Läufen erstellt hat, basierend auf der einzigartigen ID."
|
3662 |
+
|
3663 |
+
#: ../../views/admin/import/options/_reimport_template.php:44
|
3664 |
+
msgid "Unique Identifier"
|
3665 |
+
msgstr "Einzigartige ID"
|
3666 |
+
|
3667 |
+
#: ../../views/admin/import/options/_reimport_template.php:50 ../..
|
3668 |
+
#: /views/admin/import/options/_reimport_template.php:61
|
3669 |
+
msgid "Auto-detect"
|
3670 |
+
msgstr "Automatische Erkennung"
|
3671 |
+
|
3672 |
+
#: ../../views/admin/import/options/_reimport_template.php:53 ../..
|
3673 |
+
#: /views/admin/manage/index.php:318
|
3674 |
+
msgid "Edit"
|
3675 |
+
msgstr "Ändern"
|
3676 |
+
|
3677 |
+
#: ../../views/admin/import/options/_reimport_template.php:54
|
3678 |
+
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
3679 |
+
msgstr "Warnung: Sind Sie sicher dass Sie die einzigartige ID ändern wollen?"
|
3680 |
+
|
3681 |
+
#: ../../views/admin/import/options/_reimport_template.php:55
|
3682 |
+
#, php-format
|
3683 |
+
msgid ""
|
3684 |
+
"It is recommended you delete all %s associated with this import before editing the "
|
3685 |
+
"unique identifier."
|
3686 |
+
msgstr ""
|
3687 |
+
"Es wird empfohlen dass Sie alle %s löschen, die mit diesem Import zusammenhängen. "
|
3688 |
+
"Bevor Sie die einzigartige ID Löschen."
|
3689 |
+
|
3690 |
+
#: ../../views/admin/import/options/_reimport_template.php:56
|
3691 |
+
#, php-format
|
3692 |
+
msgid ""
|
3693 |
+
"Editing the unique identifier will dissociate all existing %s linked to this import. "
|
3694 |
+
"Future runs of the import will result in duplicates, as WP All Import will no longer "
|
3695 |
+
"be able to update these %s."
|
3696 |
+
msgstr ""
|
3697 |
+
"Ändern der einzigartigen ID wird alle existierenden %s zu diesem Import trennen. "
|
3698 |
+
"Zukünftige Läufe des Importes wird in Duplikaten enden, da es WP All Import nicht "
|
3699 |
+
"möglich sein wird diese zu aktualisieren: %s."
|
3700 |
+
|
3701 |
+
#: ../../views/admin/import/options/_reimport_template.php:57
|
3702 |
+
msgid ""
|
3703 |
+
"You really should just re-create your import, and pick the right unique identifier "
|
3704 |
+
"to start with."
|
3705 |
+
msgstr ""
|
3706 |
+
"Sie sollten wirklich Ihren Import neu erstellen und die richtige einzigartige ID "
|
3707 |
+
"wählen."
|
3708 |
+
|
3709 |
+
#: ../../views/admin/import/options/_reimport_template.php:67
|
3710 |
+
msgid ""
|
3711 |
+
"Drag an element, or combo of elements, to the box above. The Unique Identifier "
|
3712 |
+
"should be unique for each record in your file, and should stay the same even if your "
|
3713 |
+
"file is updated. Things like product IDs, titles, and SKUs are good Unique "
|
3714 |
+
"Identifiers because they probably won't change. Don't use a description or price, "
|
3715 |
+
"since that might be changed."
|
3716 |
+
msgstr ""
|
3717 |
+
"Ziehen Sie ein Element, oder eine Kombination von Element in die Box oben. Die "
|
3718 |
+
"einzigartige ID sollte einzigartig sein für jeden Datensatz in Ihrer Datei und "
|
3719 |
+
"sollte sich nicht verändern, auch nicht wenn die Datei aktualisiert wird. Dinge wie "
|
3720 |
+
"Produkt ID, Titel und SKU sind gute einzigartige IDs, da diese sich gewöhnlich nicht "
|
3721 |
+
"ändern. Nutzen Sie keine Beschreibung oder Preis, da sich diese häufig ändern."
|
3722 |
+
|
3723 |
+
#: ../../views/admin/import/options/_reimport_template.php:68
|
3724 |
+
#, php-format
|
3725 |
+
msgid ""
|
3726 |
+
"If you run this import again with an updated file, the Unique Identifier allows WP "
|
3727 |
+
"All Import to correctly link the records in your updated file with the %s it will "
|
3728 |
+
"create right now. If multiple records in this file have the same Unique Identifier, "
|
3729 |
+
"only the first will be created. The others will be detected as duplicates."
|
3730 |
+
msgstr ""
|
3731 |
+
"Wenn Sie diesen Import mit einer aktualisierten Datei erneut starten, erlaubt die "
|
3732 |
+
"einzigartige ID dem Importer die Datensätze mit der aktualisierten Datei %s zu "
|
3733 |
+
"verbinden. Wenn mehrere Datensätze in dieser Datei die selbe einzigartige ID haben, "
|
3734 |
+
"wird nur der erste erstellt, die anderen werden als Duplikate erkannt."
|
3735 |
+
|
3736 |
+
#: ../../views/admin/import/options/_reimport_template.php:83
|
3737 |
+
#, php-format
|
3738 |
+
msgid "WP All Import will merge data into existing %s."
|
3739 |
+
msgstr "WP All Import wird die Daten zusammenfügen mit den existierenden %s."
|
3740 |
+
|
3741 |
+
#: ../../views/admin/import/options/_reimport_template.php:93
|
3742 |
+
#, php-format
|
3743 |
+
msgid "Records in your file will be matched with %ss on your site based on..."
|
3744 |
+
msgstr ""
|
3745 |
+
"Datensätze in Ihrer Datei werden angepasst mit %ss auf Ihrer Seite basierend auf..."
|
3746 |
+
|
3747 |
+
#: ../../views/admin/import/options/_reimport_template.php:103
|
3748 |
+
msgid "Custom field"
|
3749 |
+
msgstr "Individuelles Feld"
|
3750 |
+
|
3751 |
+
#: ../../views/admin/import/options/_settings_template.php:4
|
3752 |
+
msgid "Configure Advanced Settings"
|
3753 |
+
msgstr "Bearbeite erweiterte Einstellungen"
|
3754 |
+
|
3755 |
+
#: ../../views/admin/import/options/_settings_template.php:11
|
3756 |
+
msgid "Import Speed Optimization"
|
3757 |
+
msgstr "Importiere Geschwindigkeits Optimierung "
|
3758 |
+
|
3759 |
+
#: ../../views/admin/import/options/_settings_template.php:15
|
3760 |
+
msgid "High Speed Small File Processing"
|
3761 |
+
msgstr "High-Speed Bearbeitung kleiner Dateien"
|
3762 |
+
|
3763 |
+
#: ../../views/admin/import/options/_settings_template.php:15
|
3764 |
+
msgid ""
|
3765 |
+
"If the import takes longer than your server's timeout settings (max_execution_time, "
|
3766 |
+
"mod_fcgid read data timeout, etc.) it will fail."
|
3767 |
+
msgstr ""
|
3768 |
+
"Wenn der Import länger dauert als Ihr Server timeout ist, (max_execution_time, "
|
3769 |
+
"mod_fcgid read data timeout, etc.) wird er fehlschlagen."
|
3770 |
+
|
3771 |
+
#: ../../views/admin/import/options/_settings_template.php:19
|
3772 |
+
msgid "Iterative, Piece-by-Piece Processing"
|
3773 |
+
msgstr "Wiederholende, Stück für Stück Bearbeitung"
|
3774 |
+
|
3775 |
+
#: ../../views/admin/import/options/_settings_template.php:23
|
3776 |
+
msgid "In each iteration, process"
|
3777 |
+
msgstr "In jedem Durchlauf, bearbeiten"
|
3778 |
+
|
3779 |
+
#: ../../views/admin/import/options/_settings_template.php:24
|
3780 |
+
msgid ""
|
3781 |
+
"WP All Import must be able to process this many records in less than your server's "
|
3782 |
+
"timeout settings. If your import fails before completion, to troubleshoot you should "
|
3783 |
+
"lower this number. If you are importing images, especially high resolution images, "
|
3784 |
+
"high numbers here are probably a bad idea, since downloading the images can take "
|
3785 |
+
"lots of time - for example, 20 posts with 5 images each = 100 images. At 500Kb per "
|
3786 |
+
"image that's 50Mb that needs to be downloaded. Can your server download that before "
|
3787 |
+
"timing out? If not, the import will fail."
|
3788 |
+
msgstr ""
|
3789 |
+
"WP All Import muss ermöglicht werden die Datensätze verarbeiten zu können innerhalb "
|
3790 |
+
"Ihres Server timeouts. Wenn Ihr Import fehlschlägt bevor er fertig ist, sollten Sie "
|
3791 |
+
"diese Zahl verringern. Wenn Sie Bilder importieren, speziell bei Hochauflösenden, "
|
3792 |
+
"ist eine hohe Anzahl eine schlechte Idee. Da der Download viel Zeit in Anspruch "
|
3793 |
+
"nehmen kann - Beispielsweise 20 Posts mit je 5 Bildern = 100 Bilder. Bei 500kb pro "
|
3794 |
+
"Bild sind das 50Mb die heruntergeladen werden müssen. Kann Ihr Server das "
|
3795 |
+
"herunterladen vor dem Timeout? Wenn nicht, wird der Import fehlschlagen."
|
3796 |
+
|
3797 |
+
#: ../../views/admin/import/options/_settings_template.php:30
|
3798 |
+
msgid ""
|
3799 |
+
"This option will decrease the amount of slowdown experienced at the end of large "
|
3800 |
+
"imports. The slowdown is partially caused by the need for WP All Import to read "
|
3801 |
+
"deeper and deeper into the file on each successive iteration. Splitting the file "
|
3802 |
+
"into pieces means that, for example, instead of having to read 19000 records into a "
|
3803 |
+
"20000 record file when importing the last 1000 records, WP All Import will just "
|
3804 |
+
"split it into 20 chunks, and then read the last chunk from the beginning."
|
3805 |
+
msgstr ""
|
3806 |
+
"Diese Option verringert die Anzahl der Verlangsamungen am Ende von grossen Importen. "
|
3807 |
+
"Die Verlangsamung wird teilweise dadurch ausgelöst, dass WP All Import immer tiefer "
|
3808 |
+
"und tiefer in der Datei liest, sukzessiv mit jedem Durchlauf. Eine Aufteilung der "
|
3809 |
+
"Datei bedeutet beispielsweise, dass anstatt 19'000 Datensätze in 20'000 Datensätzen "
|
3810 |
+
"zu lesen, wenn die letzten 1000 Datensätze importiert werden, eine Aufteilung in 20 "
|
3811 |
+
"Datenblöcke erfolgt und dann der letzte Datenblock von Beginn gelesen wird."
|
3812 |
+
|
3813 |
+
#: ../../views/admin/import/options/_settings_template.php:37
|
3814 |
+
msgid "Increase speed by disabling do_action calls in wp_insert_post during import."
|
3815 |
+
msgstr ""
|
3816 |
+
"Steigere die Geschwindigkeit durch Deaktivierung von do_action Aufrufen in "
|
3817 |
+
"wp_insert_post während dem Import."
|
3818 |
+
|
3819 |
+
#: ../../views/admin/import/options/_settings_template.php:38
|
3820 |
+
msgid ""
|
3821 |
+
"This option is for advanced users with knowledge of WordPress development. Your "
|
3822 |
+
"theme or plugins may require these calls when posts are created. Next action will be "
|
3823 |
+
"disabled: 'transition_post_status', 'save_post', 'pre_post_update', "
|
3824 |
+
"'add_attachment', 'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. "
|
3825 |
+
"Verify your created posts work properly if you check this box."
|
3826 |
+
msgstr ""
|
3827 |
+
"Diese Option ist für fortgeschrittene Benutzer mit Kenntnissen in der WordPress "
|
3828 |
+
"Entwicklung. Ihr Theme oder Plugin könnte diese Aufrufe benötigen wenn Posts "
|
3829 |
+
"erstellt werden. Die nächste Aktion wird deaktiviert: 'transition_post_status', "
|
3830 |
+
"'save_post', 'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', "
|
3831 |
+
"'post_updated', 'wp_insert_post'. Verifizieren Sie Ihre Posts und arbeiten Sie "
|
3832 |
+
"sauber wenn Sie dieses Häkchen setzen."
|
3833 |
+
|
3834 |
+
#: ../../views/admin/import/options/_settings_template.php:42
|
3835 |
+
msgid "Post Type"
|
3836 |
+
msgstr "Post Typ:"
|
3837 |
+
|
3838 |
+
#: ../../views/admin/import/options/_settings_template.php:43
|
3839 |
+
msgid ""
|
3840 |
+
"Editing this will change the post type of the posts processed by this import. Re-run "
|
3841 |
+
"the import for the changes to take effect."
|
3842 |
+
msgstr ""
|
3843 |
+
"Die Bearbeitung wird den post typ von den Posts dieses Imports ändern. Starten Sie "
|
3844 |
+
"den Import erneut um die Änderungen zu erwirken."
|
3845 |
+
|
3846 |
+
#: ../../views/admin/import/options/_settings_template.php:89
|
3847 |
+
msgid ""
|
3848 |
+
"Editing this can break your entire import. You will have to re-create it from "
|
3849 |
+
"scratch."
|
3850 |
+
msgstr ""
|
3851 |
+
"Diese Bearbeitung kann Ihren gesamten Import unterbrechen. Sie werden ihn von Grund "
|
3852 |
+
"auf neu erstellen müssen."
|
3853 |
+
|
3854 |
+
#: ../../views/admin/import/options/_settings_template.php:101
|
3855 |
+
msgid "Other"
|
3856 |
+
msgstr "Sonstige"
|
3857 |
+
|
3858 |
+
#: ../../views/admin/import/options/_settings_template.php:105
|
3859 |
+
msgid "Import only specified records"
|
3860 |
+
msgstr "Nur angegebene Datensätze importieren"
|
3861 |
+
|
3862 |
+
#: ../../views/admin/import/options/_settings_template.php:105
|
3863 |
+
msgid ""
|
3864 |
+
"Enter records or record ranges separated by commas, e.g. <b>1,5,7-10</b> would "
|
3865 |
+
"import the first, the fifth, and the seventh to tenth."
|
3866 |
+
msgstr ""
|
3867 |
+
"Geben Sie Datensätze oder Datensatz Bereiche durch Kommas getrennt an, z.B. "
|
3868 |
+
"<b>1,5,7-10</b> wäre der erste, der fünfte und der siebte bis zehnte Import."
|
3869 |
+
|
3870 |
+
#: ../../views/admin/import/options/_settings_template.php:116
|
3871 |
+
msgid "Delete source XML file after importing"
|
3872 |
+
msgstr "XML-Quelldatei nach dem Importieren löschen"
|
3873 |
+
|
3874 |
+
#: ../../views/admin/import/options/_settings_template.php:116
|
3875 |
+
msgid ""
|
3876 |
+
"This setting takes effect only when script has access rights to perform the action, "
|
3877 |
+
"e.g. file is not deleted when pulled via HTTP or delete permission is not granted to "
|
3878 |
+
"the user that script is executed under."
|
3879 |
+
msgstr ""
|
3880 |
+
"Diese Einstellung nimmt nur Einfluss, wenn das Skript Zugriffsrechte auf die Aktion "
|
3881 |
+
"hat. Bsp: Die Datei ist nicht gelöscht, wenn es mittelt HTTP gezogen wurde. Oder "
|
3882 |
+
"eine Erlaubnis zum Löschen liegt für das Skript, das der Benutzer gestartet, hat "
|
3883 |
+
"nicht vor."
|
3884 |
+
|
3885 |
+
#: ../../views/admin/import/options/_settings_template.php:123
|
3886 |
+
msgid "Auto-Cloak Links"
|
3887 |
+
msgstr "Automatische Linkmaskierung"
|
3888 |
+
|
3889 |
+
#: ../../views/admin/import/options/_settings_template.php:123
|
3890 |
+
#, php-format
|
3891 |
+
msgid ""
|
3892 |
+
"Automatically process all links present in body of created post or page with <b>%s</"
|
3893 |
+
"b> plugin"
|
3894 |
+
msgstr ""
|
3895 |
+
"Bearbeite automatisch alle Links die im Body des erstellten Posts oder der "
|
3896 |
+
"erstellten Seite sind mit <b>%s</b> Plug-In"
|
3897 |
+
|
3898 |
+
#: ../../views/admin/import/options/_settings_template.php:128
|
3899 |
+
msgid "Friendly Name"
|
3900 |
+
msgstr "Benutzerfreundlicher Name"
|
3901 |
+
|
3902 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:15
|
3903 |
+
#, php-format
|
3904 |
+
msgid "Your website is using Custom Fields to store data for %s."
|
3905 |
+
msgstr "Ihre Website benutzt individuelle Felder zur Datenspeicherung von %s."
|
3906 |
+
|
3907 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:16
|
3908 |
+
msgid "See Detected Fields"
|
3909 |
+
msgstr "Siehe erkannte Felder"
|
3910 |
+
|
3911 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:18
|
3912 |
+
#, php-format
|
3913 |
+
msgid "No Custom Fields are present in your database for %s."
|
3914 |
+
msgstr "Keine selbst erstellten Felder in der Datenbank für %s"
|
3915 |
+
|
3916 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:19
|
3917 |
+
#, php-format
|
3918 |
+
msgid ""
|
3919 |
+
"Manually create a %s, and fill out each field you want to import data to. WP All "
|
3920 |
+
"Import will then display these fields as available for import below."
|
3921 |
+
msgstr ""
|
3922 |
+
"Erstellen Sie Manuell ein %s und füllen Sie jedes Feld aus das Sie importieren "
|
3923 |
+
"wollen. WP All Import wird diese Felder als Verfügbar für den Import anzeigen."
|
3924 |
+
|
3925 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:21 ../..
|
3926 |
+
#: /views/admin/import/template/_custom_fields_template.php:29
|
3927 |
+
msgid "Hide Notice"
|
3928 |
+
msgstr "Hinweis ausblenden"
|
3929 |
+
|
3930 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:26
|
3931 |
+
msgid "Clear All Fields"
|
3932 |
+
msgstr "Alle Felder leeren"
|
3933 |
+
|
3934 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:28
|
3935 |
+
#, php-format
|
3936 |
+
msgid ""
|
3937 |
+
"If not all fields were detected, manually create a %s, and fill out each field you "
|
3938 |
+
"want to import data to. Then create a new import, and WP All Import will display "
|
3939 |
+
"these fields as available for import below."
|
3940 |
+
msgstr ""
|
3941 |
+
"Wenn nicht alle Felder erkannt wurden, erstellen Sie manuell ein %s und füllen Sie "
|
3942 |
+
"jedes Feld das Sie importieren wollen aus. Erstellen Sie dann einen neuen Import und "
|
3943 |
+
"WP All Import wird diese Felder für den Import anzeigen."
|
3944 |
+
|
3945 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:55 ../..
|
3946 |
+
#: /views/admin/import/template/_custom_fields_template.php:264
|
3947 |
+
#: /views/admin/import/template/_custom_fields_template.php:398
|
3948 |
+
msgid "Click to specify"
|
3949 |
+
msgstr "Hier klicken zum Bestimmen"
|
3950 |
+
|
3951 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:60 ../..
|
3952 |
+
#: /views/admin/import/template/_custom_fields_template.php:269
|
3953 |
+
#: /views/admin/import/template/_custom_fields_template.php:403
|
3954 |
+
msgid "Serialized"
|
3955 |
+
msgstr "Fortsetzung"
|
3956 |
+
|
3957 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:73 ../..
|
3958 |
+
#: /views/admin/import/template/_custom_fields_template.php:282
|
3959 |
+
#: /views/admin/import/template/_custom_fields_template.php:416
|
3960 |
+
msgid "Key"
|
3961 |
+
msgstr "Schlüssel"
|
3962 |
+
|
3963 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:144 ../..
|
3964 |
+
#: /views/admin/import/template/_custom_fields_template.php:524
|
3965 |
+
msgid "Add Custom Field"
|
3966 |
+
msgstr "Individuelles Feld hinzufügen"
|
3967 |
+
|
3968 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:150 ../..
|
3969 |
+
#: /views/admin/import/template/_custom_fields_template.php:318
|
3970 |
+
#: /views/admin/import/template/_custom_fields_template.php:452
|
3971 |
+
msgid "Auto-Detect"
|
3972 |
+
msgstr "Automatische Erkennung"
|
3973 |
+
|
3974 |
+
#: ../../views/admin/import/template/_custom_fields_template.php:155 ../..
|
3975 |
+
#: /views/admin/import/template/_custom_fields_template.php:323
|
3976 |
+
#: /views/admin/import/template/_custom_fields_template.php:457
|
3977 |
+
#: /views/admin/license/index.php:40
|
3978 |
+
msgid "Save"
|
3979 |
+
msgstr "Speichern"
|
3980 |
+
|
3981 |
+
#: ../../views/admin/import/template/_featured_template.php:8
|
3982 |
+
msgid "Show hints"
|
3983 |
+
msgstr "Zeige Hinweise"
|
3984 |
+
|
3985 |
+
#: ../../views/admin/import/template/_featured_template.php:19
|
3986 |
+
msgid "Enter image URL one per line, or separate them with a "
|
3987 |
+
msgstr "Geben Sie eine Bild URL pro Zeile ein, oder teilen Sie diese mit einem"
|
3988 |
+
|
3989 |
+
#: ../../views/admin/import/template/_featured_template.php:29 ../..
|
3990 |
+
#: /views/admin/import/template/_featured_template.php:39
|
3991 |
+
msgid "Enter image filenames one per line, or separate them with a "
|
3992 |
+
msgstr "Geben Sie einen Bildnamen pro Zeile ein, oder teilen Sie diese mit einem"
|
3993 |
+
|
3994 |
+
#: ../../views/admin/import/template/_featured_template.php:49
|
3995 |
+
msgid ""
|
3996 |
+
"Search through the Media Library for existing images before importing new images"
|
3997 |
+
msgstr ""
|
3998 |
+
"Durchsuche die Medien Bibliothek nach existierenden Bildern bevor neue Bilder "
|
3999 |
+
"importiert werden."
|
4000 |
+
|
4001 |
+
#: ../../views/admin/import/template/_featured_template.php:50
|
4002 |
+
msgid ""
|
4003 |
+
"If an image with the same file name is found in the Media Library then that image "
|
4004 |
+
"will be attached to this record instead of importing a new image. Disable this "
|
4005 |
+
"setting if your import has different images with the same file name."
|
4006 |
+
msgstr ""
|
4007 |
+
"Wird ein Bild mit dem selben Dateinamen in der Medien Bibliothek gefunden, dann wird "
|
4008 |
+
"dieses Bild an den Datensatz angehängt anstatt ein neues importiert. Deaktivieren "
|
4009 |
+
"Sie diese Einstellung wenn Ihr Import mehrere Bilder mit dem selben Dateinamen hat."
|
4010 |
+
|
4011 |
+
#: ../../views/admin/import/template/_featured_template.php:62
|
4012 |
+
msgid "Preview & Test"
|
4013 |
+
msgstr "Vorschau & Test"
|
4014 |
+
|
4015 |
+
#: ../../views/admin/import/template/_featured_template.php:67
|
4016 |
+
msgid "Set the first image to the Featured Image (_thumbnail_id)"
|
4017 |
+
msgstr "Setze das erste Bild als Featured Bild (_thumbnail_id)"
|
4018 |
+
|
4019 |
+
#: ../../views/admin/import/template/_featured_template.php:72
|
4020 |
+
msgid "If no images are downloaded successfully, create entry as Draft."
|
4021 |
+
msgstr ""
|
4022 |
+
"Wenn keine Bilder heruntergeladen werden können, erstelle den Eintrag als Entwurf."
|
4023 |
+
|
4024 |
+
#: ../../views/admin/import/template/_featured_template.php:83
|
4025 |
+
msgid "SEO & Advanced Options"
|
4026 |
+
msgstr "SEO & Erweiterte Optionen"
|
4027 |
+
|
4028 |
+
#: ../../views/admin/import/template/_featured_template.php:91
|
4029 |
+
msgid "Meta Data"
|
4030 |
+
msgstr "Meta Daten"
|
4031 |
+
|
4032 |
+
#: ../../views/admin/import/template/_featured_template.php:95
|
4033 |
+
msgid "Set Title(s)"
|
4034 |
+
msgstr "SEO Titel"
|
4035 |
+
|
4036 |
+
#: ../../views/admin/import/template/_featured_template.php:97 ../..
|
4037 |
+
#: /views/admin/import/template/_featured_template.php:108
|
4038 |
+
#: /views/admin/import/template/_featured_template.php:119
|
4039 |
+
msgid "Enter one per line, or separate them with a "
|
4040 |
+
msgstr "Geben Sie eine pro Zeile ein, oder teilen Sie diese mit einem"
|
4041 |
+
|
4042 |
+
#: ../../views/admin/import/template/_featured_template.php:99
|
4043 |
+
msgid ""
|
4044 |
+
"The first title will be linked to the first image, the second title will be linked "
|
4045 |
+
"to the second image, ..."
|
4046 |
+
msgstr ""
|
4047 |
+
"Der erste Titel wird mit dem ersten Bild verlinkt, der zweite wird mit dem zweiten "
|
4048 |
+
"Bild verlinkt, ..."
|
4049 |
+
|
4050 |
+
#: ../../views/admin/import/template/_featured_template.php:106
|
4051 |
+
msgid "Set Caption(s)"
|
4052 |
+
msgstr "Setze Beschriftung"
|
4053 |
+
|
4054 |
+
#: ../../views/admin/import/template/_featured_template.php:110
|
4055 |
+
msgid ""
|
4056 |
+
"The first caption will be linked to the first image, the second caption will be "
|
4057 |
+
"linked to the second image, ..."
|
4058 |
+
msgstr ""
|
4059 |
+
"Die erste Beschriftung wird mit dem ersten Bild verlinkt, die zweite wird mit dem "
|
4060 |
+
"zweiten Bild verlinkt, ..."
|
4061 |
+
|
4062 |
+
#: ../../views/admin/import/template/_featured_template.php:117
|
4063 |
+
msgid "Set Alt Text(s)"
|
4064 |
+
msgstr "Setze alle Texte"
|
4065 |
+
|
4066 |
+
#: ../../views/admin/import/template/_featured_template.php:121
|
4067 |
+
msgid ""
|
4068 |
+
"The first alt text will be linked to the first image, the second alt text will be "
|
4069 |
+
"linked to the second image, ..."
|
4070 |
+
msgstr ""
|
4071 |
+
"Der erste Text wird mit dem ersten Bild verlinkt, der zweite wird mit dem zweiten "
|
4072 |
+
"Bild verlinkt, ..."
|
4073 |
+
|
4074 |
+
#: ../../views/admin/import/template/_featured_template.php:128
|
4075 |
+
msgid "Set Description(s)"
|
4076 |
+
msgstr "Setze Beschreibung(en)"
|
4077 |
+
|
4078 |
+
#: ../../views/admin/import/template/_featured_template.php:139
|
4079 |
+
msgid ""
|
4080 |
+
"The first description will be linked to the first image, the second description will "
|
4081 |
+
"be linked to the second image, ..."
|
4082 |
+
msgstr ""
|
4083 |
+
"Die erste Beschreibung wird mit dem ersten Bild verlinkt, die zweite wird mit dem "
|
4084 |
+
"zweiten Bild verlinkt, ..."
|
4085 |
+
|
4086 |
+
#: ../../views/admin/import/template/_featured_template.php:143 ../..
|
4087 |
+
#: /views/admin/settings/index.php:79
|
4088 |
+
msgid "Files"
|
4089 |
+
msgstr "Dateien"
|
4090 |
+
|
4091 |
+
#: ../../views/admin/import/template/_featured_template.php:149
|
4092 |
+
msgid "Change image file names to"
|
4093 |
+
msgstr "Ändere die Dateinamen der Bilder zu"
|
4094 |
+
|
4095 |
+
#: ../../views/admin/import/template/_featured_template.php:152
|
4096 |
+
msgid ""
|
4097 |
+
"Multiple image will have numbers appended, i.e. image-name-1.jpg, image-name-2.jpg "
|
4098 |
+
msgstr ""
|
4099 |
+
"Mehrfachen Bildern werden Zahlen angehängt, Bsp: Bild-name-1.jpg,Bild-name-2.jpg"
|
4100 |
+
|
4101 |
+
#: ../../views/admin/import/template/_featured_template.php:158
|
4102 |
+
msgid "Change image file extensions"
|
4103 |
+
msgstr "Ändere Bild Dateierweiterung"
|
4104 |
+
|
4105 |
+
#: ../../views/admin/import/template/_featured_template.php:176
|
4106 |
+
msgid ""
|
4107 |
+
"WP All Import will automatically ignore elements with blank image URLs/filenames."
|
4108 |
+
msgstr ""
|
4109 |
+
"WP All Import wird automatisch die Elemente ignorieren die leere Bild URLs oder "
|
4110 |
+
"Dateinamen haben."
|
4111 |
+
|
4112 |
+
#: ../../views/admin/import/template/_featured_template.php:177
|
4113 |
+
msgid ""
|
4114 |
+
"WP All Import must download the images to your server. You can't have images in a "
|
4115 |
+
"Gallery that are referenced by external URL. That's just how WordPress works."
|
4116 |
+
msgstr ""
|
4117 |
+
"WP All Import muss die Bilder auf Ihren Server laden. Sie können keine Bilder in "
|
4118 |
+
"Ihrer Galerie haben die einen Link auf eine externe URL haben. So funktioniert "
|
4119 |
+
"WordPress."
|
4120 |
+
|
4121 |
+
#: ../../views/admin/import/template/_featured_template.php:178
|
4122 |
+
#, php-format
|
4123 |
+
msgid ""
|
4124 |
+
"Importing a variable number of images can be done using a <a href=\"%s\" target="
|
4125 |
+
"\"_blank\">FOREACH LOOP</a>"
|
4126 |
+
msgstr ""
|
4127 |
+
"Eine Variable Anzahl an Bildern zu importieren kann mittels <a href=\"%s\" target="
|
4128 |
+
"\"_blank\">Schleifendurchlauf</a> durchgeführt werden."
|
4129 |
+
|
4130 |
+
#: ../../views/admin/import/template/_featured_template.php:179
|
4131 |
+
#, php-format
|
4132 |
+
msgid ""
|
4133 |
+
"For more information check out our <a href=\"%s\" target=\"_blank\">comprehensive "
|
4134 |
+
"documentation</a>"
|
4135 |
+
msgstr ""
|
4136 |
+
"Für mehr Informationen schauen Sie doch in unserer <a href=\"%s\" target=\"_blank"
|
4137 |
+
"\">Umfassender Dokumentation</a>"
|
4138 |
+
|
4139 |
+
#: ../../views/admin/import/template/_nested_template.php:35
|
4140 |
+
msgid "Nested XML/CSV files"
|
4141 |
+
msgstr "Verschachtelte XML/CSV Dateien"
|
4142 |
+
|
4143 |
+
#: ../../views/admin/import/template/_nested_template.php:48
|
4144 |
+
msgid "remove"
|
4145 |
+
msgstr "Entfernen"
|
4146 |
+
|
4147 |
+
#: ../../views/admin/import/template/_nested_template.php:69
|
4148 |
+
msgid "Specify the URL of the nested file to use."
|
4149 |
+
msgstr "Bestimmen Sie die URL der verschachtelten Datei."
|
4150 |
+
|
4151 |
+
#: ../../views/admin/import/template/_nested_template.php:73
|
4152 |
+
msgid "Add"
|
4153 |
+
msgstr "Hinzufügen"
|
4154 |
+
|
4155 |
+
#: ../../views/admin/import/template/_other_template.php:5
|
4156 |
+
#, php-format
|
4157 |
+
msgid "Other %s Options"
|
4158 |
+
msgstr "Andere %s Optionen"
|
4159 |
+
|
4160 |
+
#: ../../views/admin/import/template/_other_template.php:17
|
4161 |
+
msgid "Post Status"
|
4162 |
+
msgstr "Post Status"
|
4163 |
+
|
4164 |
+
#: ../../views/admin/import/template/_other_template.php:20
|
4165 |
+
msgid "Published"
|
4166 |
+
msgstr "Veröffentlicht"
|
4167 |
+
|
4168 |
+
#: ../../views/admin/import/template/_other_template.php:24
|
4169 |
+
msgid "Draft"
|
4170 |
+
msgstr "Entwurf"
|
4171 |
+
|
4172 |
+
#: ../../views/admin/import/template/_other_template.php:32
|
4173 |
+
msgid ""
|
4174 |
+
"The value of presented XPath should be one of the following: ('publish', 'draft', "
|
4175 |
+
"'trash')."
|
4176 |
+
msgstr ""
|
4177 |
+
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: "
|
4178 |
+
"('veröffentlichen', 'Entwurf', 'Papierkorb')."
|
4179 |
+
|
4180 |
+
#: ../../views/admin/import/template/_other_template.php:41
|
4181 |
+
msgid "Post Dates"
|
4182 |
+
msgstr "Post Datum"
|
4183 |
+
|
4184 |
+
#: ../../views/admin/import/template/_other_template.php:41
|
4185 |
+
msgid ""
|
4186 |
+
"Use any format supported by the PHP <b>strtotime</b> function. That means pretty "
|
4187 |
+
"much any human-readable date will work."
|
4188 |
+
msgstr ""
|
4189 |
+
"Benutzen Sie ein Format das von der PHP <b>strtotime</b> Funktion unterstützt wird. "
|
4190 |
+
"Das bedeutet, dass jedes menschlich lesbare Datum funktioniert."
|
4191 |
+
|
4192 |
+
#: ../../views/admin/import/template/_other_template.php:45
|
4193 |
+
msgid "As specified"
|
4194 |
+
msgstr "Wie Bestimmt"
|
4195 |
+
|
4196 |
+
#: ../../views/admin/import/template/_other_template.php:54
|
4197 |
+
msgid "Random dates"
|
4198 |
+
msgstr "Zufällige Datum"
|
4199 |
+
|
4200 |
+
#: ../../views/admin/import/template/_other_template.php:54
|
4201 |
+
msgid ""
|
4202 |
+
"Posts will be randomly assigned dates in this range. WordPress ensures posts with "
|
4203 |
+
"dates in the future will not appear until their date has been reached."
|
4204 |
+
msgstr ""
|
4205 |
+
"Posts bekommen zufällige Datum in diesem Bereich. WordPress lässt Posts mit Datum in "
|
4206 |
+
"der Zukunft zu, diese erscheinen nicht bis dieses Datum erreicht ist. "
|
4207 |
+
|
4208 |
+
#: ../../views/admin/import/template/_other_template.php:58 ../..
|
4209 |
+
#: /views/admin/manage/delete.php:46
|
4210 |
+
msgid "and"
|
4211 |
+
msgstr "und"
|
4212 |
+
|
4213 |
+
#: ../../views/admin/import/template/_other_template.php:66
|
4214 |
+
msgid "Comments"
|
4215 |
+
msgstr "Kommentare"
|
4216 |
+
|
4217 |
+
#: ../../views/admin/import/template/_other_template.php:69 ../..
|
4218 |
+
#: /views/admin/import/template/_other_template.php:92
|
4219 |
+
msgid "Open"
|
4220 |
+
msgstr "Offen"
|
4221 |
+
|
4222 |
+
#: ../../views/admin/import/template/_other_template.php:73 ../..
|
4223 |
+
#: /views/admin/import/template/_other_template.php:96
|
4224 |
+
msgid "Closed"
|
4225 |
+
msgstr "Geschlossen"
|
4226 |
+
|
4227 |
+
#: ../../views/admin/import/template/_other_template.php:81 ../..
|
4228 |
+
#: /views/admin/import/template/_other_template.php:104
|
4229 |
+
msgid ""
|
4230 |
+
"The value of presented XPath should be one of the following: ('open', 'closed')."
|
4231 |
+
msgstr ""
|
4232 |
+
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: "
|
4233 |
+
"('Offen','Geschlossen')."
|
4234 |
+
|
4235 |
+
#: ../../views/admin/import/template/_other_template.php:89
|
4236 |
+
msgid "Trackbacks and Pingbacks"
|
4237 |
+
msgstr "Trackbacks und Pingbacks"
|
4238 |
+
|
4239 |
+
#: ../../views/admin/import/template/_other_template.php:112
|
4240 |
+
msgid "Post Slug"
|
4241 |
+
msgstr "Post Slug"
|
4242 |
+
|
4243 |
+
#: ../../views/admin/import/template/_other_template.php:120
|
4244 |
+
msgid "Post Author"
|
4245 |
+
msgstr "Post Autor"
|
4246 |
+
|
4247 |
+
#: ../../views/admin/import/template/_other_template.php:122
|
4248 |
+
msgid ""
|
4249 |
+
"Assign the post to an existing user account by specifying the user ID, username, or "
|
4250 |
+
"e-mail address."
|
4251 |
+
msgstr ""
|
4252 |
+
"Ordne den Post einem bestehenden Benutzerkonto zu durch bestimmen der ID, des "
|
4253 |
+
"Benutzernamen oder der Email Adresse."
|
4254 |
+
|
4255 |
+
#: ../../views/admin/import/template/_other_template.php:128
|
4256 |
+
msgid "Download & Import Attachments"
|
4257 |
+
msgstr "Herunterladen & Importiere Anhänge"
|
4258 |
+
|
4259 |
+
#: ../../views/admin/import/template/_other_template.php:129 ../..
|
4260 |
+
#: /views/admin/import/template/_taxonomies_template.php:65
|
4261 |
+
#: /views/admin/import/template/_taxonomies_template.php:122
|
4262 |
+
#: /views/admin/import/template/_taxonomies_template.php:134
|
4263 |
+
#: /views/admin/import/template/_taxonomies_template.php:212
|
4264 |
+
msgid "Separated by"
|
4265 |
+
msgstr "Getrennt durch"
|
4266 |
+
|
4267 |
+
#: ../../views/admin/import/template/_other_template.php:137
|
4268 |
+
msgid "Search for existing attachments to prevent duplicates in media library"
|
4269 |
+
msgstr ""
|
4270 |
+
"Suche nach existierenden Anhängen um vor Duplikaten in der Medien Bibliothek zu "
|
4271 |
+
"schützen"
|
4272 |
+
|
4273 |
+
#: ../../views/admin/import/template/_other_template.php:144
|
4274 |
+
msgid "Post Format"
|
4275 |
+
msgstr "Post Format"
|
4276 |
+
|
4277 |
+
#: ../../views/admin/import/template/_other_template.php:150
|
4278 |
+
msgid "Standard"
|
4279 |
+
msgstr "Standard"
|
4280 |
+
|
4281 |
+
#: ../../views/admin/import/template/_other_template.php:182
|
4282 |
+
msgid "Page Template"
|
4283 |
+
msgstr "Seiten Vorlage"
|
4284 |
+
|
4285 |
+
#: ../../views/admin/import/template/_other_template.php:185
|
4286 |
+
msgid "Select a template"
|
4287 |
+
msgstr "Wählen Sie eine Vorlage"
|
4288 |
+
|
4289 |
+
#: ../../views/admin/import/template/_other_template.php:189
|
4290 |
+
msgid "Default"
|
4291 |
+
msgstr "Standard"
|
4292 |
+
|
4293 |
+
#: ../../views/admin/import/template/_other_template.php:211
|
4294 |
+
msgid "Page Parent"
|
4295 |
+
msgstr "Seiten Eltern"
|
4296 |
+
|
4297 |
+
#: ../../views/admin/import/template/_other_template.php:211
|
4298 |
+
msgid ""
|
4299 |
+
"Enter the slug of the desired page parent. If adding the child and parent pages in "
|
4300 |
+
"the same import, set 'Records per Iteration' to 1, run the import twice, or run "
|
4301 |
+
"separate imports for child and parent pages."
|
4302 |
+
msgstr ""
|
4303 |
+
"Geben Sie den Slug der gewünschten Elternseite ein. Wenn Sie Kind und Elternseiten "
|
4304 |
+
"im selben Import hinzufügen, setzen Sie 'Datensätze pro Durchlauf' auf 1. Oder Sie "
|
4305 |
+
"lassen den Import zweimal durchlaufen, oder Sie teilen die Imports auf Kind und "
|
4306 |
+
"Elternseiten auf."
|
4307 |
+
|
4308 |
+
#: ../../views/admin/import/template/_other_template.php:215
|
4309 |
+
msgid "Select page parent"
|
4310 |
+
msgstr "Wähle Elternseite"
|
4311 |
+
|
4312 |
+
#: ../../views/admin/import/template/_other_template.php:218
|
4313 |
+
msgid "(no parent)"
|
4314 |
+
msgstr "(keine Eltern)"
|
4315 |
+
|
4316 |
+
#: ../../views/admin/import/template/_other_template.php:237
|
4317 |
+
msgid "Post Parent"
|
4318 |
+
msgstr "Eltern Post"
|
4319 |
+
|
4320 |
+
#: ../../views/admin/import/template/_other_template.php:237
|
4321 |
+
msgid ""
|
4322 |
+
"Enter the slug of the desired post parent. If adding the child and parent posts in "
|
4323 |
+
"the same import, set 'Records per Iteration' to 1, run the import twice, or run "
|
4324 |
+
"separate imports for child and parent posts."
|
4325 |
+
msgstr ""
|
4326 |
+
"Geben Sie den Slug der gewünschten Eltern Post ein. Wenn Sie Kind und Eltern Posts "
|
4327 |
+
"im selben Import hinzufügen, setzen Sie 'Datensätze pro Durchlauf' auf 1. Oder Sie "
|
4328 |
+
"lassen den Import zweimal durchlaufen, oder Sie teilen die Imports auf Kind und "
|
4329 |
+
"Elternseiten auf."
|
4330 |
+
|
4331 |
+
#: ../../views/admin/import/template/_other_template.php:241
|
4332 |
+
msgid "Set post parent"
|
4333 |
+
msgstr "Setze Eltern Post"
|
4334 |
+
|
4335 |
+
#: ../../views/admin/import/template/_other_template.php:265
|
4336 |
+
msgid "Menu Order"
|
4337 |
+
msgstr "Menü Reihenfolge"
|
4338 |
+
|
4339 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:13
|
4340 |
+
msgid "Taxonomies, Categories, Tags"
|
4341 |
+
msgstr "Taxonomien, Kategorien, Tags"
|
4342 |
+
|
4343 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:17
|
4344 |
+
msgid "Show Hints"
|
4345 |
+
msgstr "Zeige Hinweise"
|
4346 |
+
|
4347 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:38
|
4348 |
+
#, php-format
|
4349 |
+
msgid "Each %s has just one %s"
|
4350 |
+
msgstr "Jedes %s hat genau eine %s"
|
4351 |
+
|
4352 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:46 ../..
|
4353 |
+
#: /views/admin/import/template/_taxonomies_template.php:70
|
4354 |
+
#, php-format
|
4355 |
+
msgid "Try to match terms to existing child %s"
|
4356 |
+
msgstr "Versuche Begriffe mit bestehenden Kinder %s zusammen zu führen. "
|
4357 |
+
|
4358 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:51 ../..
|
4359 |
+
#: /views/admin/import/template/_taxonomies_template.php:75
|
4360 |
+
#, php-format
|
4361 |
+
msgid "Only assign %s to the imported %s, not the entire hierarchy"
|
4362 |
+
msgstr ""
|
4363 |
+
"Füge %s nur zu den importierten %s hinzu, nicht zu der vollständigen Hierarchie."
|
4364 |
+
|
4365 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:52 ../..
|
4366 |
+
#: /views/admin/import/template/_taxonomies_template.php:76
|
4367 |
+
msgid ""
|
4368 |
+
"By default all categories above the matched category will also be assigned to the "
|
4369 |
+
"post. If enabled, only the imported category will be assigned to the post."
|
4370 |
+
msgstr ""
|
4371 |
+
"Standardmässig werden alle Kategorien über der zugeordneten Kategorie zu dem Post "
|
4372 |
+
"hinzugefügt. Wenn Sie das aktivieren, wird der Post nur zu der angegebenen Kategorie "
|
4373 |
+
"hinzugefügt."
|
4374 |
+
|
4375 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:60
|
4376 |
+
#, php-format
|
4377 |
+
msgid "Each %s has multiple %s"
|
4378 |
+
msgstr "Jedes %s hat mehrere %s"
|
4379 |
+
|
4380 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:85
|
4381 |
+
#, php-format
|
4382 |
+
msgid "%ss have hierarchical (parent/child) %s (i.e. Sports > Golf > Clubs > Putters)"
|
4383 |
+
msgstr "%ss haben Hierarchische (Eltern/Kind) %s (Bsp: Sport>Golf>Clubs>Putters)"
|
4384 |
+
|
4385 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:90
|
4386 |
+
msgid ""
|
4387 |
+
"An element in my file contains the entire hierarchy (i.e. you have an element with a "
|
4388 |
+
"value = Sports > Golf > Clubs > Putters)"
|
4389 |
+
msgstr ""
|
4390 |
+
"Ein Element in der Datei hat eine vollständige Hierarchie (Bsp: Ein Element hat den "
|
4391 |
+
"Wert = Sports > Golf > Clubs > Putters)"
|
4392 |
+
|
4393 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:127
|
4394 |
+
#, php-format
|
4395 |
+
msgid "Only assign %s to the bottom level term in the hierarchy"
|
4396 |
+
msgstr "Füge %s nur an das unterste Level der Hierarchie hinzu."
|
4397 |
+
|
4398 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:132
|
4399 |
+
msgid "Separate hierarchy groups via symbol"
|
4400 |
+
msgstr "Teile die Hierarchie Gruppen durch das Symbol"
|
4401 |
+
|
4402 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:140
|
4403 |
+
msgid "Add Another Hierarchy Group"
|
4404 |
+
msgstr "Weitere Hierarchie Gruppen hinzufügen"
|
4405 |
+
|
4406 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:147
|
4407 |
+
msgid "Manually design the hierarchy with drag & drop"
|
4408 |
+
msgstr "Erstelle die Hierarchie manuell durch drag & drop"
|
4409 |
+
|
4410 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:149
|
4411 |
+
#, php-format
|
4412 |
+
msgid ""
|
4413 |
+
"Drag the <img src=\"%s\" class=\"wpallimport-drag-icon\"/> to the right to create a "
|
4414 |
+
"child, drag up and down to re-order."
|
4415 |
+
msgstr ""
|
4416 |
+
"Ziehe das <img src=\"%s\" class=\"wpallimport-drag-icon\"/> nach rechts um ein Kind "
|
4417 |
+
"zu erstellen, ziehe rauf und runter zum Ordnen."
|
4418 |
+
|
4419 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:227
|
4420 |
+
#, php-format
|
4421 |
+
msgid "Enable Mapping for %s"
|
4422 |
+
msgstr "Aktiviere Zuordnung für %s"
|
4423 |
+
|
4424 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:306
|
4425 |
+
msgid "Apply mapping rules before splitting via separator symbol"
|
4426 |
+
msgstr ""
|
4427 |
+
"Wende Regeln für Zuordnung an bevor eine Aufteilung mittels dem Separator Symbol "
|
4428 |
+
"erfolgt."
|
4429 |
+
|
4430 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:321
|
4431 |
+
msgid "Show \"private\" taxonomies"
|
4432 |
+
msgstr "Zeige \"Private\" Taxonomien"
|
4433 |
+
|
4434 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:332
|
4435 |
+
msgid "Taxonomies that don't already exist on your site will be created."
|
4436 |
+
msgstr "Taxonomien die noch nicht auf der Seite existieren werden erstellt."
|
4437 |
+
|
4438 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:333
|
4439 |
+
msgid ""
|
4440 |
+
"To import to existing parent taxonomies, use the existing taxonomy name or slug."
|
4441 |
+
msgstr ""
|
4442 |
+
"Zum importieren in existierende Eltern Taxonomien benutzen Sie bestehende Taxonomie "
|
4443 |
+
"Namen oder Slugs."
|
4444 |
+
|
4445 |
+
#: ../../views/admin/import/template/_taxonomies_template.php:334
|
4446 |
+
msgid ""
|
4447 |
+
"To import to existing hierarchical taxonomies, create the entire hierarchy using the "
|
4448 |
+
"taxonomy names or slugs."
|
4449 |
+
msgstr ""
|
4450 |
+
"Um in existierende hierarchische Taxonomien zu importieren, erstellen Sie die "
|
4451 |
+
"gesamte Hierarchie und nutzen Sie die Taxonomien oder Slugs."
|
4452 |
+
|
4453 |
+
#: ../../views/admin/license/index.php:3
|
4454 |
+
msgid "WP All Import Licenses"
|
4455 |
+
msgstr "WP All Import Lizenzen"
|
4456 |
+
|
4457 |
+
#: ../../views/admin/license/index.php:23 ../../views/admin/settings/index.php:163
|
4458 |
+
msgid "Active"
|
4459 |
+
msgstr "Aktiv"
|
4460 |
+
|
4461 |
+
#: ../../views/admin/license/index.php:24
|
4462 |
+
msgid "Deactivate License"
|
4463 |
+
msgstr "Deaktiviere Lizenz"
|
4464 |
+
|
4465 |
+
#: ../../views/admin/license/index.php:26 ../../views/admin/settings/index.php:165
|
4466 |
+
msgid "Activate License"
|
4467 |
+
msgstr "Aktiviere Lizenz"
|
4468 |
+
|
4469 |
+
#: ../../views/admin/manage/bulk.php:10
|
4470 |
+
#, php-format
|
4471 |
+
msgid "Are you sure you want to delete <strong>%s</strong> selected %s?"
|
4472 |
+
msgstr ""
|
4473 |
+
"Sind Sie sicher dass Sie das selektierte <strong>%s</strong> löschen wollen %s?"
|
4474 |
+
|
4475 |
+
#: ../../views/admin/manage/bulk.php:12
|
4476 |
+
msgid "Delete associated posts as well"
|
4477 |
+
msgstr "Lösche auch assoziierte Posts"
|
4478 |
+
|
4479 |
+
#: ../../views/admin/manage/bulk.php:17 ../../views/admin/manage/delete.php:19
|
4480 |
+
msgid "Delete associated images from media gallery"
|
4481 |
+
msgstr "Lösche auch assoziierte Bilder aus der Medien Galerie"
|
4482 |
+
|
4483 |
+
#: ../../views/admin/manage/bulk.php:22 ../../views/admin/manage/delete.php:24
|
4484 |
+
msgid "Delete associated files from media gallery"
|
4485 |
+
msgstr "Lösche auch assoziierte Dateien aus der Media Galerie"
|
4486 |
+
|
4487 |
+
#: ../../views/admin/manage/bulk.php:31 ../../views/admin/manage/delete.php:32
|
4488 |
+
#, php-format
|
4489 |
+
msgid ""
|
4490 |
+
"<p class=\"wpallimport-delete-posts-warning\"><strong>Important</strong>: this "
|
4491 |
+
"import was created automatically by WP All Export. All posts exported by the \"%s\" "
|
4492 |
+
"export job have been automatically associated with this import.</p>"
|
4493 |
+
msgstr ""
|
4494 |
+
"<p class=\"wpallimport-delete-posts-warning\"><strong>Wichtig</strong>: dieser "
|
4495 |
+
"Import wurde automatisch erstellt von WP All Export. Alle Posts die von \"%s\" "
|
4496 |
+
"exportiert wurden, wurden automatisch assoziiert mit diesem Import.</p>"
|
4497 |
+
|
4498 |
+
#: ../../views/admin/manage/delete.php:1
|
4499 |
+
msgid "Delete Import"
|
4500 |
+
msgstr "Lösche Import"
|
4501 |
+
|
4502 |
+
#: ../../views/admin/manage/index.php:18 ../../views/admin/manage/index.php:20
|
4503 |
+
msgid "Search Imports"
|
4504 |
+
msgstr "Suche Imports"
|
4505 |
+
|
4506 |
+
#: ../../views/admin/manage/index.php:28
|
4507 |
+
msgid "File"
|
4508 |
+
msgstr "Datei"
|
4509 |
+
|
4510 |
+
#: ../../views/admin/manage/index.php:31
|
4511 |
+
msgid "Info & Options"
|
4512 |
+
msgstr "Info & Optionen"
|
4513 |
+
|
4514 |
+
#: ../../views/admin/manage/index.php:100
|
4515 |
+
#, php-format
|
4516 |
+
msgid "No previous imports found. <a href=\"%s\">Start a new import...</a>"
|
4517 |
+
msgstr ""
|
4518 |
+
"Keine vorherigen Imports gefunden. <a href=\"%s\">Starte einen neuen Import...</a>"
|
4519 |
+
|
4520 |
+
#: ../../views/admin/manage/index.php:182
|
4521 |
+
msgid "Edit Import"
|
4522 |
+
msgstr "Ändere Import"
|
4523 |
+
|
4524 |
+
#: ../../views/admin/manage/index.php:187
|
4525 |
+
msgid "Import Settings"
|
4526 |
+
msgstr "Import Einstellungen"
|
4527 |
+
|
4528 |
+
#: ../../views/admin/manage/index.php:228
|
4529 |
+
msgid "triggered with cron"
|
4530 |
+
msgstr "Ausgelöst von cron"
|
4531 |
+
|
4532 |
+
#: ../../views/admin/manage/index.php:235 ../../views/admin/manage/index.php:250 .
|
4533 |
+
#: ../views/admin/manage/index.php:264
|
4534 |
+
#, php-format
|
4535 |
+
msgid "last activity %s ago"
|
4536 |
+
msgstr "Letzte Aktivität vor %s "
|
4537 |
+
|
4538 |
+
#: ../../views/admin/manage/index.php:242
|
4539 |
+
msgid "currently processing with cron"
|
4540 |
+
msgstr "cron Bearbeitung in Gang"
|
4541 |
+
|
4542 |
+
#: ../../views/admin/manage/index.php:257
|
4543 |
+
msgid "Import currently in progress"
|
4544 |
+
msgstr "Import Bearbeitung in Gang"
|
4545 |
+
|
4546 |
+
#: ../../views/admin/manage/index.php:271 ../../views/admin/manage/index.php:275
|
4547 |
+
#, php-format
|
4548 |
+
msgid "Import Attempt at %s"
|
4549 |
+
msgstr "Import Versuch bei %s"
|
4550 |
+
|
4551 |
+
#: ../../views/admin/manage/index.php:276
|
4552 |
+
msgid "Import failed, please check logs"
|
4553 |
+
msgstr "Import fehlgeschlagen, Bitte Log überprüfen"
|
4554 |
+
|
4555 |
+
#: ../../views/admin/manage/index.php:286
|
4556 |
+
#, php-format
|
4557 |
+
msgid "Last run: %s"
|
4558 |
+
msgstr "Letzter Lauf: %s"
|
4559 |
+
|
4560 |
+
#: ../../views/admin/manage/index.php:286
|
4561 |
+
msgid "never"
|
4562 |
+
msgstr "Nie"
|
4563 |
+
|
4564 |
+
#: ../../views/admin/manage/index.php:287
|
4565 |
+
#, php-format
|
4566 |
+
msgid "%d %s created"
|
4567 |
+
msgstr "%d %s erstellt"
|
4568 |
+
|
4569 |
+
#: ../../views/admin/manage/index.php:288
|
4570 |
+
#, php-format
|
4571 |
+
msgid "%d updated, %d skipped, %d deleted"
|
4572 |
+
msgstr "%d aktualisiert, %d übersprungen, %d gelöscht"
|
4573 |
+
|
4574 |
+
#: ../../views/admin/manage/index.php:295
|
4575 |
+
msgid "settings edited since last run"
|
4576 |
+
msgstr "Einstellungen geändert seit letztem Lauf"
|
4577 |
+
|
4578 |
+
#: ../../views/admin/manage/index.php:307 ../../views/admin/manage/scheduling.php:2
|
4579 |
+
msgid "Cron Scheduling"
|
4580 |
+
msgstr "Cron Geplant"
|
4581 |
+
|
4582 |
+
#: ../../views/admin/manage/index.php:309
|
4583 |
+
msgid "History Logs"
|
4584 |
+
msgstr "Chronik Log"
|
4585 |
+
|
4586 |
+
#: ../../views/admin/manage/index.php:319
|
4587 |
+
msgid "Run Import"
|
4588 |
+
msgstr "Starte Import"
|
4589 |
+
|
4590 |
+
#: ../../views/admin/manage/index.php:321
|
4591 |
+
msgid "Cancel Cron"
|
4592 |
+
msgstr "Cron Abbrechen"
|
4593 |
+
|
4594 |
+
#: ../../views/admin/manage/index.php:323
|
4595 |
+
msgid "Cancel"
|
4596 |
+
msgstr "Abbrechen"
|
4597 |
+
|
4598 |
+
#: ../../views/admin/manage/scheduling.php:8
|
4599 |
+
msgid ""
|
4600 |
+
"To schedule an import, you must create two cron jobs in your web hosting control "
|
4601 |
+
"panel. One cron job will be used to run the Trigger script, the other to run the "
|
4602 |
+
"Execution script."
|
4603 |
+
msgstr ""
|
4604 |
+
"Um einen Import zu planen, müssen Sie zwei Cron Jobs in Ihrem web Hosting Bedienfeld "
|
4605 |
+
"erstellen. Ein Cron Job wird genutzt um das auslöse Skript zu starten, das andere um "
|
4606 |
+
"das Ausführende Skript zu starten."
|
4607 |
+
|
4608 |
+
#: ../../views/admin/manage/scheduling.php:19
|
4609 |
+
msgid "Trigger Script"
|
4610 |
+
msgstr "Auslösendes Skript"
|
4611 |
+
|
4612 |
+
#: ../../views/admin/manage/scheduling.php:21
|
4613 |
+
msgid "Every time you want to schedule the import, run the trigger script."
|
4614 |
+
msgstr "Jedes mal wenn Sie den Import planen wollen, starten Sie das Auslöse Skript."
|
4615 |
+
|
4616 |
+
#: ../../views/admin/manage/scheduling.php:23
|
4617 |
+
msgid ""
|
4618 |
+
"To schedule the import to run once every 24 hours, run the trigger script every 24 "
|
4619 |
+
"hours. Most hosts require you to use “wget” to access a URL. Ask your host for "
|
4620 |
+
"details."
|
4621 |
+
msgstr ""
|
4622 |
+
"Um den Import einmal in 24 Stunden zu planen, starten Sie das Auslöse Skript alle 24 "
|
4623 |
+
"Stunden. Die meisten Hosts erlauben \"wget\" für den Zugriff auf eine URL. Fragen "
|
4624 |
+
"Sie Ihren Host für Details."
|
4625 |
+
|
4626 |
+
#: ../../views/admin/manage/scheduling.php:25 ../../views/admin/manage/scheduling.
|
4627 |
+
#: php:37
|
4628 |
+
msgid "Example:"
|
4629 |
+
msgstr "Beispiel:"
|
4630 |
+
|
4631 |
+
#: ../../views/admin/manage/scheduling.php:29
|
4632 |
+
msgid "Execution Script"
|
4633 |
+
msgstr "Ausführende Skript"
|
4634 |
+
|
4635 |
+
#: ../../views/admin/manage/scheduling.php:31
|
4636 |
+
msgid ""
|
4637 |
+
"The Execution script actually executes the import, once it has been triggered with "
|
4638 |
+
"the Trigger script."
|
4639 |
+
msgstr ""
|
4640 |
+
"Das ausführende Skript erledigt den Import, wenn es vom auslösenden Skript gestartet "
|
4641 |
+
"wurde."
|
4642 |
+
|
4643 |
+
#: ../../views/admin/manage/scheduling.php:33
|
4644 |
+
msgid ""
|
4645 |
+
"It processes in iteration (only importing a few records each time it runs) to "
|
4646 |
+
"optimize server load. It is recommended you run the execution script every 2 minutes."
|
4647 |
+
msgstr ""
|
4648 |
+
"Es bearbeitet in Schleifendurchläufen (importiert nur ein paar Datensätze mit jedem "
|
4649 |
+
"Durchlauf) zur Optimierung der Serverlast. Es wird empfohlen das Ausführende Skript "
|
4650 |
+
"alle 2 Minuten zu starten."
|
4651 |
+
|
4652 |
+
#: ../../views/admin/manage/scheduling.php:35
|
4653 |
+
msgid ""
|
4654 |
+
"It also operates this way in case of unexpected crashes by your web host. If it "
|
4655 |
+
"crashes before the import is finished, the next run of the cron job two minutes "
|
4656 |
+
"later will continue it where it left off, ensuring reliability."
|
4657 |
+
msgstr ""
|
4658 |
+
"So funktioniert es auch wenn unerwartete Abstürze Ihres Hosts auftreten. Wenn es "
|
4659 |
+
"abstürzt bevor der Import fertig ist, wird der nächste Lauf des cron Jobs zwei "
|
4660 |
+
"Minuten später dort weiter machen, wo der vorherige aufgehört hat."
|
4661 |
+
|
4662 |
+
#: ../../views/admin/manage/scheduling.php:41
|
4663 |
+
msgid "Notes"
|
4664 |
+
msgstr "Hinweis"
|
4665 |
+
|
4666 |
+
#: ../../views/admin/manage/scheduling.php:44
|
4667 |
+
msgid ""
|
4668 |
+
"Your web host may require you to use a command other than wget, although wget is "
|
4669 |
+
"most common. In this case, you must asking your web hosting provider for help."
|
4670 |
+
msgstr ""
|
4671 |
+
"Ihr Webhost benötigt evtl einen anderen Befehl als \"wget\", obwohl \"wget\" das am "
|
4672 |
+
"häufigsten genutzte ist. In diesem Fall müssen Sie Ihren Webhost Anbieter um Hilfe "
|
4673 |
+
"fragen."
|
4674 |
+
|
4675 |
+
#: ../../views/admin/manage/scheduling.php:54
|
4676 |
+
msgid ""
|
4677 |
+
"To schedule this import with a cron job, you must use the \"Download from URL\" "
|
4678 |
+
"option on the Import Settings screen of WP All Import."
|
4679 |
+
msgstr ""
|
4680 |
+
"Um einen Import mit einem Cron Job zu planen, müssen Sie \"Von URL Herunterladen\" "
|
4681 |
+
"wählen. Diese finden Sie in den Import Einstellungen von WP All Import."
|
4682 |
+
|
4683 |
+
#: ../../views/admin/manage/scheduling.php:57
|
4684 |
+
msgid "Go to Import Settings now..."
|
4685 |
+
msgstr "Gehe zu Import Einstellungen..."
|
4686 |
+
|
4687 |
+
#: ../../views/admin/manage/update.php:1
|
4688 |
+
msgid "Update Import"
|
4689 |
+
msgstr "Aktualisiere Import"
|
4690 |
+
|
4691 |
+
#: ../../views/admin/manage/update.php:9
|
4692 |
+
#, php-format
|
4693 |
+
msgid "Are you sure you want to update <strong>%s</strong> import?"
|
4694 |
+
msgstr "Sind Sie sicher dass Sie den Import <strong>%s</strong> aktualisieren wollen?"
|
4695 |
+
|
4696 |
+
#: ../../views/admin/manage/update.php:10
|
4697 |
+
#, php-format
|
4698 |
+
msgid "Source path is <strong>%s</strong>"
|
4699 |
+
msgstr "Quellpfad ist <strong>%s</strong>"
|
4700 |
+
|
4701 |
+
#: ../../views/admin/manage/update.php:21
|
4702 |
+
msgid ""
|
4703 |
+
"Update feature is not available for this import since it has no external path linked."
|
4704 |
+
msgstr ""
|
4705 |
+
"Funktion für Aktualisierung ist nicht verfügbar für diesen Import, da es keinen "
|
4706 |
+
"externen Pfad verlinkt hat."
|
4707 |
+
|
4708 |
+
#: ../../views/admin/settings/index.php:18
|
4709 |
+
msgid "Import/Export Templates"
|
4710 |
+
msgstr "Importiere/Exportiere Vorlagen"
|
4711 |
+
|
4712 |
+
#: ../../views/admin/settings/index.php:32
|
4713 |
+
msgid "Delete Selected"
|
4714 |
+
msgstr "Lösche Ausgewählte"
|
4715 |
+
|
4716 |
+
#: ../../views/admin/settings/index.php:33
|
4717 |
+
msgid "Export Selected"
|
4718 |
+
msgstr "Exportiere Ausgewählte"
|
4719 |
+
|
4720 |
+
#: ../../views/admin/settings/index.php:36
|
4721 |
+
msgid "There are no templates saved"
|
4722 |
+
msgstr "Es sind keine Vorlagen gespeichert"
|
4723 |
+
|
4724 |
+
#: ../../views/admin/settings/index.php:41
|
4725 |
+
msgid "Import Templates"
|
4726 |
+
msgstr "Importiere Templates"
|
4727 |
+
|
4728 |
+
#: ../../views/admin/settings/index.php:49
|
4729 |
+
msgid "Cron Imports"
|
4730 |
+
msgstr "Cron Importieren"
|
4731 |
+
|
4732 |
+
#: ../../views/admin/settings/index.php:54
|
4733 |
+
msgid "Secret Key"
|
4734 |
+
msgstr "Geheimer Schlüssel"
|
4735 |
+
|
4736 |
+
#: ../../views/admin/settings/index.php:57
|
4737 |
+
msgid "Changing this will require you to re-create your existing cron jobs."
|
4738 |
+
msgstr "Wenn Sie das ändern, müssen Sie Ihre existierenden Cron Jobs neu erstellen."
|
4739 |
+
|
4740 |
+
#: ../../views/admin/settings/index.php:61
|
4741 |
+
msgid "Cron Processing Time Limit"
|
4742 |
+
msgstr "Cron Bearbeitung Zeit Limit"
|
4743 |
+
|
4744 |
+
#: ../../views/admin/settings/index.php:64
|
4745 |
+
msgid "Leave blank to use your server's limit on script run times."
|
4746 |
+
msgstr "Leer lassen um des Servers Limit für die Skript Läufe zu nutzen."
|
4747 |
+
|
4748 |
+
#: ../../views/admin/settings/index.php:68
|
4749 |
+
msgid "Cron Sleep"
|
4750 |
+
msgstr "Cron Schläft"
|
4751 |
+
|
4752 |
+
#: ../../views/admin/settings/index.php:71
|
4753 |
+
msgid ""
|
4754 |
+
"Sleep the specified number of seconds between each post created, updated, or deleted "
|
4755 |
+
"with cron. Leave blank to not sleep. Only necessary on servers that are slowed down "
|
4756 |
+
"by the cron job because they have very minimal processing power and resources."
|
4757 |
+
msgstr ""
|
4758 |
+
"Schlafe die bestimmte Zahl von Sekunden zwischen jedem erstellten, aktualisierten "
|
4759 |
+
"oder gelöschten Post. Leer lassen um nicht zu schlafen. Nur nötig auf Servern die "
|
4760 |
+
"durch den Cron verlangsamt werden da sie zu wenig Prozessorleistung und Ressourcen "
|
4761 |
+
"haben."
|
4762 |
+
|
4763 |
+
#: ../../views/admin/settings/index.php:84 ../../views/admin/settings/index.php:87
|
4764 |
+
msgid "Secure Mode"
|
4765 |
+
msgstr "Quellen Art"
|
4766 |
+
|
4767 |
+
#: ../../views/admin/settings/index.php:89
|
4768 |
+
msgid "Randomize folder names"
|
4769 |
+
msgstr "Verzeichnis Namen zufällig anordnen"
|
4770 |
+
|
4771 |
+
#: ../../views/admin/settings/index.php:95
|
4772 |
+
#, php-format
|
4773 |
+
msgid ""
|
4774 |
+
"Imported files, chunks, logs and temporary files will be placed in a folder with a "
|
4775 |
+
"randomized name inside of %s."
|
4776 |
+
msgstr ""
|
4777 |
+
"Importierte Dateien, Datenblöcke, Logs und temporäre Dateien werden in ein "
|
4778 |
+
"Verzeichnis mit zufällig angeordneten Namen geschrieben %s.."
|
4779 |
+
|
4780 |
+
#: ../../views/admin/settings/index.php:100
|
4781 |
+
msgid "Log Storage"
|
4782 |
+
msgstr "Log Speicher"
|
4783 |
+
|
4784 |
+
#: ../../views/admin/settings/index.php:103
|
4785 |
+
msgid "Number of logs to store for each import. Enter 0 to never store logs."
|
4786 |
+
msgstr ""
|
4787 |
+
"Anzahl an Logs die für jeden Import gespeichert werden. Geben Sie 0 ein um niemals "
|
4788 |
+
"Logs zu speichern."
|
4789 |
+
|
4790 |
+
#: ../../views/admin/settings/index.php:107
|
4791 |
+
msgid "Clean Up Temp Files"
|
4792 |
+
msgstr "Räume temporäre Dateien auf"
|
4793 |
+
|
4794 |
+
#: ../../views/admin/settings/index.php:109
|
4795 |
+
msgid "Clean Up"
|
4796 |
+
msgstr "Aufräumen"
|
4797 |
+
|
4798 |
+
#: ../../views/admin/settings/index.php:110
|
4799 |
+
msgid ""
|
4800 |
+
"Attempt to remove temp files left over by imports that were improperly terminated."
|
4801 |
+
msgstr ""
|
4802 |
+
"Versuche die temporären Dateien zu entfernen, die von unsachgemäss beendeten Imports "
|
4803 |
+
"übrig blieben."
|
4804 |
+
|
4805 |
+
#: ../../views/admin/settings/index.php:118
|
4806 |
+
msgid "Advanced Settings"
|
4807 |
+
msgstr "Erweiterte Einstellungen"
|
4808 |
+
|
4809 |
+
#: ../../views/admin/settings/index.php:123
|
4810 |
+
msgid "Chunk Size"
|
4811 |
+
msgstr "Datenblock Grösse "
|
4812 |
+
|
4813 |
+
#: ../../views/admin/settings/index.php:126
|
4814 |
+
msgid "Split file into chunks containing the specified number of records."
|
4815 |
+
msgstr "Teile Datei in Datenblöcke die die bestimmte Zahl an Datensätzen enthalten."
|
4816 |
+
|
4817 |
+
#: ../../views/admin/settings/index.php:130
|
4818 |
+
msgid "WP_IMPORTING"
|
4819 |
+
msgstr "WP_IMPORTIERT"
|
4820 |
+
|
4821 |
+
#: ../../views/admin/settings/index.php:134
|
4822 |
+
msgid "Enable WP_IMPORTING"
|
4823 |
+
msgstr "Aktiviere WP_IMPORTIERT"
|
4824 |
+
|
4825 |
+
#: ../../views/admin/settings/index.php:136
|
4826 |
+
msgid "Setting this constant avoids triggering pingback."
|
4827 |
+
msgstr ""
|
4828 |
+
"Wenn Sie diese Einstellung aktivieren, verhindern Sie die Auslösung eines pingback."
|
4829 |
+
|
4830 |
+
#: ../../views/admin/settings/index.php:140
|
4831 |
+
msgid "Add Port To URL"
|
4832 |
+
msgstr "Füge Port zu URL hinzu"
|
4833 |
+
|
4834 |
+
#: ../../views/admin/settings/index.php:143
|
4835 |
+
msgid ""
|
4836 |
+
"Specify the port number to add if you're having problems continuing to Step 2 and "
|
4837 |
+
"are running things on a custom port. Default is blank."
|
4838 |
+
msgstr ""
|
4839 |
+
"Bestimmen Sie die hinzuzufügende Port Nummer wenn Sie Probleme haben zu Schritt 2 zu "
|
4840 |
+
"gelangen und dinge auf einem individuellen Port laufen lassen. Standard ist leer."
|
4841 |
+
|
4842 |
+
#: ../../views/admin/settings/index.php:150
|
4843 |
+
msgid "Licenses"
|
4844 |
+
msgstr "Lizenzen"
|
4845 |
+
|
4846 |
+
#: ../../views/admin/settings/index.php:157
|
4847 |
+
msgid "License Key"
|
4848 |
+
msgstr "Lizenz Schlüssel"
|
4849 |
+
|
4850 |
+
#: ../../views/admin/settings/index.php:170
|
4851 |
+
msgid ""
|
4852 |
+
"A license key is required to access plugin updates. You can use your license key on "
|
4853 |
+
"an unlimited number of websites. Do not distribute your license key to 3rd parties. "
|
4854 |
+
"You can get your license key in the <a target=\"_blank\" href=\"http://www."
|
4855 |
+
"wpallimport.com/portal\">customer portal</a>."
|
4856 |
+
msgstr ""
|
4857 |
+
"Ein Lizenz Schlüssel wird benötigt um Zugang auf Plugin Updates zu haben. Sie können "
|
4858 |
+
"Ihren Lizenz Schlüssel auf einer unbestimmten Anzahl von Webseiten nutzen. Geben Sie "
|
4859 |
+
"Ihren Schlüssel nicht an dritte weiter. Sie können Ihren Lizenz Schlüssel im <a "
|
4860 |
+
"target=\"_blank\" href=\"http://www.wpallimport.com/portal\">Kunden Portal</a> "
|
4861 |
+
"bekommen."
|
models/import/record.php
CHANGED
@@ -1463,7 +1463,7 @@ class PMXI_Import_Record extends PMXI_Model_Record {
|
|
1463 |
|
1464 |
$attch = null;
|
1465 |
|
1466 |
-
$url =
|
1467 |
$bn = wp_all_import_sanitize_filename(basename($url));
|
1468 |
|
1469 |
if ( "yes" == $this->options[$option_slug . 'download_images'] and ! empty($auto_extensions_bundle[$slug][$i]) and preg_match('%^(jpg|jpeg|png|gif)$%i', $auto_extensions_bundle[$slug][$i])){
|
@@ -1628,7 +1628,7 @@ class PMXI_Import_Record extends PMXI_Model_Record {
|
|
1628 |
|
1629 |
if ( ! $create_image ){
|
1630 |
|
1631 |
-
$url =
|
1632 |
|
1633 |
$request = get_file_curl($url, $image_filepath);
|
1634 |
|
1463 |
|
1464 |
$attch = null;
|
1465 |
|
1466 |
+
$url = trim($img_url);
|
1467 |
$bn = wp_all_import_sanitize_filename(basename($url));
|
1468 |
|
1469 |
if ( "yes" == $this->options[$option_slug . 'download_images'] and ! empty($auto_extensions_bundle[$slug][$i]) and preg_match('%^(jpg|jpeg|png|gif)$%i', $auto_extensions_bundle[$slug][$i])){
|
1628 |
|
1629 |
if ( ! $create_image ){
|
1630 |
|
1631 |
+
$url = trim(pmxi_convert_encoding($img_url));
|
1632 |
|
1633 |
$request = get_file_curl($url, $image_filepath);
|
1634 |
|
plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP All Import
|
4 |
Plugin URI: http://www.wpallimport.com/upgrade-to-pro?utm_source=wordpress.org&utm_medium=plugins-page&utm_campaign=free+plugin
|
5 |
Description: The most powerful solution for importing XML and CSV files to WordPress. Create Posts and Pages with content from any XML or CSV file. A paid upgrade to WP All Import Pro is available for support and additional features.
|
6 |
-
Version: 3.3.
|
7 |
Author: Soflyy
|
8 |
*/
|
9 |
|
@@ -25,7 +25,7 @@ define('WP_ALL_IMPORT_ROOT_URL', rtrim(plugin_dir_url(__FILE__), '/'));
|
|
25 |
*/
|
26 |
define('WP_ALL_IMPORT_PREFIX', 'pmxi_');
|
27 |
|
28 |
-
define('PMXI_VERSION', '3.3.
|
29 |
|
30 |
define('PMXI_EDITION', 'free');
|
31 |
|
@@ -1083,6 +1083,7 @@ final class PMXI_Plugin {
|
|
1083 |
'image_meta_alt_delim' => ',',
|
1084 |
'image_meta_description' => '',
|
1085 |
'image_meta_description_delim' => ',',
|
|
|
1086 |
'status_xpath' => '',
|
1087 |
'download_images' => 'yes',
|
1088 |
'converted_options' => 0,
|
@@ -1103,6 +1104,8 @@ final class PMXI_Plugin {
|
|
1103 |
'featured_image' => '',
|
1104 |
'download_featured_image' => '',
|
1105 |
'download_featured_delim' => ',',
|
|
|
|
|
1106 |
'is_featured' => 1,
|
1107 |
'set_image_meta_title' => 0,
|
1108 |
'set_image_meta_caption' => 0,
|
3 |
Plugin Name: WP All Import
|
4 |
Plugin URI: http://www.wpallimport.com/upgrade-to-pro?utm_source=wordpress.org&utm_medium=plugins-page&utm_campaign=free+plugin
|
5 |
Description: The most powerful solution for importing XML and CSV files to WordPress. Create Posts and Pages with content from any XML or CSV file. A paid upgrade to WP All Import Pro is available for support and additional features.
|
6 |
+
Version: 3.3.5
|
7 |
Author: Soflyy
|
8 |
*/
|
9 |
|
25 |
*/
|
26 |
define('WP_ALL_IMPORT_PREFIX', 'pmxi_');
|
27 |
|
28 |
+
define('PMXI_VERSION', '3.3.5');
|
29 |
|
30 |
define('PMXI_EDITION', 'free');
|
31 |
|
1083 |
'image_meta_alt_delim' => ',',
|
1084 |
'image_meta_description' => '',
|
1085 |
'image_meta_description_delim' => ',',
|
1086 |
+
'image_meta_description_delim_logic' => 'separate',
|
1087 |
'status_xpath' => '',
|
1088 |
'download_images' => 'yes',
|
1089 |
'converted_options' => 0,
|
1104 |
'featured_image' => '',
|
1105 |
'download_featured_image' => '',
|
1106 |
'download_featured_delim' => ',',
|
1107 |
+
'gallery_featured_image' => '',
|
1108 |
+
'gallery_featured_delim' => ',',
|
1109 |
'is_featured' => 1,
|
1110 |
'set_image_meta_title' => 0,
|
1111 |
'set_image_meta_caption' => 0,
|
readme.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
=== Import any XML or CSV File to WordPress ===
|
2 |
Contributors: soflyy, wpallimport
|
3 |
Requires at least: 4.1
|
4 |
-
Tested up to: 4.4.
|
5 |
-
Stable tag: 3.3.
|
6 |
Tags: wordpress csv import, wordpress xml import, xml, csv, datafeed, import, migrate, import csv to wordpress, import xml to wordpress, advanced xml import, advanced csv import, bulk csv import, bulk xml import, bulk data import, xml to custom post type, csv to custom post type, woocommerce csv import, woocommerce xml import, csv import, import csv, xml import, import xml, csv importer
|
7 |
|
8 |
WP All Import is an extremely powerful importer that makes it easy to import any XML or CSV file to WordPress.
|
@@ -43,7 +43,7 @@ For technical support from the developers, please consider purchasing WP All Imp
|
|
43 |
|
44 |
* Guaranteed technical support via e-mail.
|
45 |
|
46 |
-
[Upgrade to the professional edition of WP All Import.](http://www.wpallimport.com/
|
47 |
|
48 |
Need to [import XML and CSV to WooCommerce?](http://wordpress.org/plugins/woocommerce-xml-csv-product-import/) Check out our WooCommerce add-on.
|
49 |
|
@@ -105,6 +105,9 @@ Does it work with special character encoding like Hebrew, Arabic, Chinese, etc?
|
|
105 |
|
106 |
== Changelog ==
|
107 |
|
|
|
|
|
|
|
108 |
= 3.3.4 =
|
109 |
- fixed error messages on step 1 in case when server throws fatal error e.q. time limit exception
|
110 |
- fixed option "Delete posts that are no longer present in your file", now it works with empty CSV files which has only one header row
|
1 |
=== Import any XML or CSV File to WordPress ===
|
2 |
Contributors: soflyy, wpallimport
|
3 |
Requires at least: 4.1
|
4 |
+
Tested up to: 4.4.2
|
5 |
+
Stable tag: 3.3.5
|
6 |
Tags: wordpress csv import, wordpress xml import, xml, csv, datafeed, import, migrate, import csv to wordpress, import xml to wordpress, advanced xml import, advanced csv import, bulk csv import, bulk xml import, bulk data import, xml to custom post type, csv to custom post type, woocommerce csv import, woocommerce xml import, csv import, import csv, xml import, import xml, csv importer
|
7 |
|
8 |
WP All Import is an extremely powerful importer that makes it easy to import any XML or CSV file to WordPress.
|
43 |
|
44 |
* Guaranteed technical support via e-mail.
|
45 |
|
46 |
+
[Upgrade to the professional edition of WP All Import.](http://www.wpallimport.com/upgrade-to-pro/?utm_source=free-plugin&utm_medium=dot-org&utm_campaign=upgrade)
|
47 |
|
48 |
Need to [import XML and CSV to WooCommerce?](http://wordpress.org/plugins/woocommerce-xml-csv-product-import/) Check out our WooCommerce add-on.
|
49 |
|
105 |
|
106 |
== Changelog ==
|
107 |
|
108 |
+
= 3.3.5 =
|
109 |
+
- fixed 'Use images currently in Media Library' option
|
110 |
+
|
111 |
= 3.3.4 =
|
112 |
- fixed error messages on step 1 in case when server throws fatal error e.q. time limit exception
|
113 |
- fixed option "Delete posts that are no longer present in your file", now it works with empty CSV files which has only one header row
|