aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cache/driver/driver_interface.php
blob: 9ac9ca0c59d5d9d97117062777eaba725402ecc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

namespace phpbb\cache\driver;

/**
* An interface that all cache drivers must implement
*/
interface driver_interface
{
	/**
	* Load global cache
	*
	* @return mixed False if an error was encountered, otherwise the data type of the cached data
	*/
	public function load();

	/**
	* Unload cache object
	*
	* @return null
	*/
	public function unload();

	/**
	* Save modified objects
	*
	* @return null
	*/
	public function save();

	/**
	* Tidy cache
	*
	* @return null
	*/
	public function tidy();

	/**
	* Get saved cache object
	*
	* @param string $var_name 		Cache key
	* @return mixed 				False if an error was encountered, otherwise the saved cached object
	*/
	public function get($var_name);

	/**
	* Put data into cache
	*
	* @param string $var_name 		Cache key
	* @param mixed $var 			Cached data to store
	* @param int $ttl 				Time-to-live of cached data
	* @return null
	*/
	public function put($var_name, $var, $ttl = 0);

	/**
	* Purge cache data
	*
	* @return null
	*/
	public function purge();

	/**
	* Destroy cache data
	*
	* @param string $var_name 		Cache key
	* @param string $table 			Table name
	* @return null
	*/
	public function destroy($var_name, $table = '');

	/**
	* Check if a given cache entry exists
	*
	* @param string $var_name 		Cache key
	*
	* @return bool 					True if cache file exists and has not expired.
	*								False otherwise.
	*/
	public function _exists($var_name);

	/**
	* Load result of an SQL query from cache.
	*
	* @param string $query			SQL query
	*
	* @return int|bool				Query ID (integer) if cache contains a rowset
	*								for the specified query.
	*								False otherwise.
	*/
	public function sql_load($query);

	/**
	* Save result of an SQL query in cache.
	*
	* In persistent cache stores, this function stores the query
	* result to persistent storage. In other words, there is no need
	* to call save() afterwards.
	*
	* @param \phpbb\db\driver\driver_interface $db	Database connection
	* @param string $query			SQL query, should be used for generating storage key
	* @param mixed $query_result	The result from \dbal::sql_query, to be passed to
	* 								\dbal::sql_fetchrow to get all rows and store them
	* 								in cache.
	* @param int $ttl				Time to live, after this timeout the query should
	*								expire from the cache.
	* @return int|mixed				If storing in cache succeeded, an integer $query_id
	* 								representing the query should be returned. Otherwise
	* 								the original $query_result should be returned.
	*/
	public function sql_save(\phpbb\db\driver\driver_interface $db, $query, $query_result, $ttl);

	/**
	* Check if result for a given SQL query exists in cache.
	*
	* @param int $query_id
	* @return bool
	*/
	public function sql_exists($query_id);

	/**
	* Fetch row from cache (database)
	*
	* @param int $query_id
	* @return array|bool 			The query result if found in the cache, otherwise
	* 								false.
	*/
	public function sql_fetchrow($query_id);

	/**
	* Fetch a field from the current row of a cached database result (database)
	*
	* @param int $query_id
	* @param string $field 			The name of the column.
	* @return string|bool 			The field of the query result if found in the cache,
	* 								otherwise false.
	*/
	public function sql_fetchfield($query_id, $field);

	/**
	* Seek a specific row in an a cached database result (database)
	*
	* @param int $rownum 			Row to seek to.
	* @param int $query_id
	* @return bool
	*/
	public function sql_rowseek($rownum, $query_id);

	/**
	* Free memory used for a cached database result (database)
	*
	* @param int $query_id
	* @return bool
	*/
	public function sql_freeresult($query_id);
}
idth: 0.0%;'/> -rw-r--r--perl-install/share/po/fr.po2
-rw-r--r--perl-install/share/po/fur.po2
-rw-r--r--perl-install/share/po/ga.po2
-rw-r--r--perl-install/share/po/gl.po2
-rw-r--r--perl-install/share/po/he.po2
-rw-r--r--perl-install/share/po/hi.po2
-rw-r--r--perl-install/share/po/hr.po2
-rw-r--r--perl-install/share/po/hu.po2
-rw-r--r--perl-install/share/po/id.po2
-rw-r--r--perl-install/share/po/is.po2
-rw-r--r--perl-install/share/po/it.po2
-rw-r--r--perl-install/share/po/ja.po2
-rw-r--r--perl-install/share/po/ko.po2
-rw-r--r--perl-install/share/po/ky.po2
-rw-r--r--perl-install/share/po/lt.po2
-rw-r--r--perl-install/share/po/ltg.po2
-rw-r--r--perl-install/share/po/lv.po2
-rw-r--r--perl-install/share/po/mk.po2
-rw-r--r--perl-install/share/po/mn.po2
-rw-r--r--perl-install/share/po/ms.po2
-rw-r--r--perl-install/share/po/mt.po2
-rw-r--r--perl-install/share/po/nb.po2
-rw-r--r--perl-install/share/po/nl.po2
-rw-r--r--perl-install/share/po/nn.po2
-rw-r--r--perl-install/share/po/pa_IN.po2
-rw-r--r--perl-install/share/po/pl.po2
-rw-r--r--perl-install/share/po/pt.po2
-rw-r--r--perl-install/share/po/pt_BR.po2
-rw-r--r--perl-install/share/po/ro.po2
-rw-r--r--perl-install/share/po/ru.po2
-rw-r--r--perl-install/share/po/sc.po2
-rw-r--r--perl-install/share/po/sk.po2
-rw-r--r--perl-install/share/po/sl.po2
-rw-r--r--perl-install/share/po/sq.po2
-rw-r--r--perl-install/share/po/sr.po2
-rw-r--r--perl-install/share/po/sr@Latn.po2
-rw-r--r--perl-install/share/po/sv.po2
-rw-r--r--perl-install/share/po/ta.po2
-rw-r--r--perl-install/share/po/tg.po2
-rw-r--r--perl-install/share/po/th.po2
-rw-r--r--perl-install/share/po/tl.po2
-rw-r--r--perl-install/share/po/tr.po2
-rw-r--r--perl-install/share/po/uk.po2
-rw-r--r--perl-install/share/po/uz.po2
-rw-r--r--perl-install/share/po/uz@Latn.po2
-rw-r--r--perl-install/share/po/vi.po2
-rw-r--r--perl-install/share/po/wa.po2
-rw-r--r--perl-install/share/po/zh_CN.po2
-rw-r--r--perl-install/share/po/zh_TW.po2
71 files changed, 71 insertions, 71 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index 0bcd83154..ddb083e8f 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -17716,7 +17716,7 @@ msgstr ""
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index e3f795e83..97ff7fcdd 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -21111,7 +21111,7 @@ msgstr "Plaaslike Netwerkadres"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index cdfe90fae..ac785d306 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -18664,7 +18664,7 @@ msgstr "የቀይ ባርኔታ መረብ"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index ad5e6d499..9970b2ed8 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -21257,7 +21257,7 @@ msgstr "عنوان الشبكة المحلية"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 7e3327911..dafb56cb0 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -21056,7 +21056,7 @@ msgstr "Yerli Şəbəkə ünvanı"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 9b428f863..b81b11911 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -18889,7 +18889,7 @@ msgstr "Прагляд лякальнай сеткі"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 84c2715f0..f5eb025ab 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -20042,7 +20042,7 @@ msgstr "Адрес на Локална мрежа"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index f610a1342..804b43a6c 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -21190,7 +21190,7 @@ msgstr "স্থানীয় নেটওয়ার্ক অ্যাড্র
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index c925d2854..74a779366 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -18985,7 +18985,7 @@ msgstr "Chomlec'h ar rouedad lec'hel"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Address IP lec'hel"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index ef67ab809..6e4e147a0 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -21546,7 +21546,7 @@ msgstr "Lokalna mrežna adresa"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index e865d2a58..df0f3ecbe 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -21670,7 +21670,7 @@ msgstr "Paràmetres de la xarxa local"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Adreça IP local"
#
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 87eb7d4a6..28348c411 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -21458,7 +21458,7 @@ msgstr "Nastavení lokální sítě"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Lokální IP adresa"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 09e6c84ba..e97e3d5f2 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -21554,7 +21554,7 @@ msgstr "Gosodiadau Rhwydwaith Ardal Leol"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Cyfeiriad IP lleol"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index a9e96b196..6bad34c81 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -21460,7 +21460,7 @@ msgstr "Adresse på lokalnetværk"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index eff42115b..56799c8d7 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -21881,7 +21881,7 @@ msgstr "Einstellungen des lokalen Netzwerkes"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Lokale IP-Adresse"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index d932c28aa..22a46dc1c 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -20640,7 +20640,7 @@ msgstr "Τοπική διεύθυνση δικτύου"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 06b27342f..0c08ebdf3 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -19284,7 +19284,7 @@ msgstr "neniu retkarto trovita"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index f1f1d9a9d..d8b284c3e 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -21833,7 +21833,7 @@ msgstr "Dirección de red local"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 6a27211d2..51165e413 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -21508,7 +21508,7 @@ msgstr "Kohtvõrgu seadistused"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Kohalik IP-aadress"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 7525d96db..e8bf18a51 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -21608,7 +21608,7 @@ msgstr "Bertako Eremuko Sare ezarpenak"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Bertako IP helbidea"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index b052c5e94..28722846e 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -21404,7 +21404,7 @@ msgstr "نشانی شبکه‌ی محلی"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 3008b68de..d986fa905 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -21701,7 +21701,7 @@ msgstr "Paikallisverkko-osoite"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index c546c3a36..35ae89c13 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -21981,7 +21981,7 @@ msgstr "Configuration du Réseau Local"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Adresse IP locale"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index 596566cfd..87c54f6b5 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -18690,7 +18690,7 @@ msgstr ""
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index e72d727e3..b20c89bc4 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -18729,7 +18729,7 @@ msgstr "ní fuaireathas cárta gréasánú"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 73fe26701..5772f2a3a 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -20682,7 +20682,7 @@ msgstr "Enderezo da Rede Local"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 396012049..9f886bef9 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -20111,7 +20111,7 @@ msgstr "הגדרות רשת מקומית"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "כתובת IP מקומית"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index af7a39bb8..d3d819c6c 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -20312,7 +20312,7 @@ msgstr "स्थानीय नेटवर्क का पता"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 475d48278..735f02db2 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -20413,7 +20413,7 @@ msgstr "C-Class lokalna mreža"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index eb741bfa1..4338797ac 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -21768,7 +21768,7 @@ msgstr "Helyi hálózati cím"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index dd6b9f124..76e06ead3 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -21756,7 +21756,7 @@ msgstr "Setting Local Area Network"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Alamat IP Lokal"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index 787fd3081..074f480dc 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -21449,7 +21449,7 @@ msgstr "Stillingar staðbundins nets"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Staðbundin IP-tala"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index df200b736..894503aee 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -21745,7 +21745,7 @@ msgstr "Indirizzo rete locale"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index ddf49ac1f..5fdbddd44 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -21193,7 +21193,7 @@ msgstr "ローカルネットワークの設定"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "ローカルIPアドレス"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index 49b2d5ba7..5cf6aafb1 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -19527,7 +19527,7 @@ msgstr "C 클래스 지역 네트웍"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po
index d4bc6caf4..ddbb05624 100644
--- a/perl-install/share/po/ky.po
+++ b/perl-install/share/po/ky.po
@@ -19447,7 +19447,7 @@ msgstr "Локалдык желе"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index fb1e18bc7..d09ae7ee7 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -19318,7 +19318,7 @@ msgstr "nerasta jokia tinklo plokštė"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po
index 43c7c67f3..b56c1950f 100644
--- a/perl-install/share/po/ltg.po
+++ b/perl-install/share/po/ltg.po
@@ -19743,7 +19743,7 @@ msgstr "Lokaluo teikla adrese"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index e9dbc43f3..b96bc8350 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -19718,7 +19718,7 @@ msgstr "Lokālā tīkla adrese"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/mk.po b/perl-install/share/po/mk.po
index 4ba4adba6..c91c44600 100644
--- a/perl-install/share/po/mk.po
+++ b/perl-install/share/po/mk.po
@@ -20797,7 +20797,7 @@ msgstr "Локален Мрежа"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/mn.po b/perl-install/share/po/mn.po
index bff4e0d4b..9075567fe 100644
--- a/perl-install/share/po/mn.po
+++ b/perl-install/share/po/mn.po
@@ -18980,7 +18980,7 @@ msgstr "Дотоод сүлжээнд чалчих"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/ms.po b/perl-install/share/po/ms.po
index a08f2182c..54597796b 100644
--- a/perl-install/share/po/ms.po
+++ b/perl-install/share/po/ms.po
@@ -19045,7 +19045,7 @@ msgstr "Layari Rangkaian Tempatan"
#: standalone/drakgw:180
#, fuzzy, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Alamat IP DCC:"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
index 34112720f..879257275 100644
--- a/perl-install/share/po/mt.po
+++ b/perl-install/share/po/mt.po
@@ -21267,7 +21267,7 @@ msgstr "Indirizz tan-network lokali"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr ""
#: standalone/drakgw:182
diff --git a/perl-install/share/po/nb.po b/perl-install/share/po/nb.po
index a5cab67cf..e021e259f 100644
--- a/perl-install/share/po/nb.po
+++ b/perl-install/share/po/nb.po
@@ -21577,7 +21577,7 @@ msgstr "Lokal nettverksadresse-oppsett"
#: standalone/drakgw:180
#, c-format
-msgid "Local IP adress"
+msgid "Local IP address"
msgstr "Lokal IP-adresse"
#: standalone/drakgw:182
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index 4dd165084..431b4e2aa 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po