Broken Link Checker - Version 1.6.1

Version Description

  • Fixed the "database not up to date" bug. Now the plugin should properly upgrade the DB.
Download this release

Release Info

Developer whiteshadow
Plugin Icon 128x128 Broken Link Checker
Version 1.6.1
Comparing to
See all releases

Code changes from version 1.6 to 1.6.1

broken-link-checker.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Broken Link Checker
4
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
5
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
6
- Version: 1.6
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/blog/
9
  Text Domain: broken-link-checker
3
  Plugin Name: Broken Link Checker
4
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
5
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
6
+ Version: 1.6.1
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/blog/
9
  Text Domain: broken-link-checker
core/core.php CHANGED
@@ -402,16 +402,8 @@ class wsBrokenLinkChecker {
402
  global $blclog;
403
 
404
  $moduleManager = blcModuleManager::getInstance();
405
-
406
- //Sanity check : make sure the DB is all set up
407
- if ( $this->db_version != $this->conf->options['current_db_version'] ) {
408
- printf(
409
- __("Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)", 'broken-link-checker'),
410
- $this->conf->options['current_db_version'],
411
- $this->db_version
412
- );
413
- echo '<br>', __('Try deactivating and then reactivating the plugin.', 'broken-link-checker');
414
- }
415
 
416
  //Prior to 1.5.2 (released 2012-05-27), there was a bug that would cause the donation flag to be
417
  //set incorrectly. So we'll unset the flag in that case.
@@ -1205,17 +1197,9 @@ class wsBrokenLinkChecker {
1205
  global $wpdb, $blclog; /* @var wpdb $wpdb */
1206
 
1207
  $blc_link_query = blcLinkQuery::getInstance();
1208
-
1209
- //Sanity check : Make sure the plugin's tables are all set up.
1210
- if ( $this->db_version != $this->conf->options['current_db_version'] ) {
1211
- printf(
1212
- __("Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)", 'broken-link-checker'),
1213
- $this->conf->options['current_db_version'],
1214
- $this->db_version
1215
- );
1216
- echo '<br>', __('Try deactivating and then reactivating the plugin.', 'broken-link-checker');
1217
- }
1218
-
1219
  //Cull invalid and missing modules so that we don't get dummy links/instances showing up.
1220
  $moduleManager = blcModuleManager::getInstance();
1221
  $moduleManager->validate_active_modules();
@@ -1358,7 +1342,34 @@ class wsBrokenLinkChecker {
1358
  include dirname($this->loader) . '/includes/admin/links-page-js.php';
1359
 
1360
  ?></div><?php
1361
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1362
 
1363
  /**
1364
  * Create a custom link filter using params passed in $_POST.
@@ -2018,7 +2029,7 @@ class wsBrokenLinkChecker {
2018
  global $wpdb;
2019
 
2020
  //Sanity check : make sure the DB is all set up
2021
- if ( $this->db_version != $this->conf->options['current_db_version'] ) {
2022
  //FB::error("The plugin's database tables are not up to date! Stop.");
2023
  return;
2024
  }
402
  global $blclog;
403
 
404
  $moduleManager = blcModuleManager::getInstance();
405
+
406
+ $this->ensure_database_validity();
 
 
 
 
 
 
 
 
407
 
408
  //Prior to 1.5.2 (released 2012-05-27), there was a bug that would cause the donation flag to be
409
  //set incorrectly. So we'll unset the flag in that case.
1197
  global $wpdb, $blclog; /* @var wpdb $wpdb */
1198
 
1199
  $blc_link_query = blcLinkQuery::getInstance();
1200
+
1201
+ $this->ensure_database_validity();
1202
+
 
 
 
 
 
 
 
 
1203
  //Cull invalid and missing modules so that we don't get dummy links/instances showing up.
1204
  $moduleManager = blcModuleManager::getInstance();
1205
  $moduleManager->validate_active_modules();
1342
  include dirname($this->loader) . '/includes/admin/links-page-js.php';
1343
 
1344
  ?></div><?php
1345
+ }
1346
+
1347
+ /**
1348
+ * Ensure that the plugin's database is at the required version.
1349
+ *
1350
+ * @param bool $upgradeOnFailure If true, will attempt to upgrade the DB is out of date.
1351
+ * @param bool $silent Output nothing
1352
+ * @return bool
1353
+ */
1354
+ private function ensure_database_validity($upgradeOnFailure = true, $silent = false) {
1355
+ //Sanity check : Make sure the plugin's tables are all set up.
1356
+ if ( $this->db_version != $this->conf->options['current_db_version'] ) {
1357
+ if ( $upgradeOnFailure ) {
1358
+ require_once BLC_DIRECTORY . '/includes/admin/db-upgrade.php';
1359
+ blcDatabaseUpgrader::upgrade_database();
1360
+ return $this->ensure_database_validity(false, $silent);
1361
+ } else if ( !$silent ) {
1362
+ printf(
1363
+ __("Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)", 'broken-link-checker'),
1364
+ $this->conf->options['current_db_version'],
1365
+ $this->db_version
1366
+ );
1367
+ echo '<br>', __('Try deactivating and then reactivating the plugin.', 'broken-link-checker');
1368
+ }
1369
+ return false;
1370
+ }
1371
+ return true;
1372
+ }
1373
 
1374
  /**
1375
  * Create a custom link filter using params passed in $_POST.
2029
  global $wpdb;
2030
 
2031
  //Sanity check : make sure the DB is all set up
2032
+ if ( !$this->ensure_database_validity(true, false) ) {
2033
  //FB::error("The plugin's database tables are not up to date! Stop.");
2034
  return;
2035
  }
core/init.php CHANGED
@@ -254,7 +254,7 @@ add_filter('cron_schedules', 'blc_cron_schedules');
254
  function blc_activation_hook(){
255
  require BLC_DIRECTORY . '/includes/activation.php';
256
  }
257
- register_activation_hook(plugin_basename(BLC_PLUGIN_FILE), 'blc_activation_hook');
258
 
259
  //Load the plugin if installed successfully
260
  if ( $blc_config_manager->options['installation_complete'] ){
254
  function blc_activation_hook(){
255
  require BLC_DIRECTORY . '/includes/activation.php';
256
  }
257
+ register_activation_hook(BLC_PLUGIN_FILE, 'blc_activation_hook');
258
 
259
  //Load the plugin if installed successfully
260
  if ( $blc_config_manager->options['installation_complete'] ){
languages/broken-link-checker-pt_PT.mo CHANGED
Binary file
languages/broken-link-checker-pt_PT.po CHANGED
@@ -1,11 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Broken Link Checker 1.5 PT\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-11 10:00-0000\n"
6
- "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
- "Language-Team: mowsterJobs @ http://jobs.mowster.net <jobs@mowster.net>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,1160 +13,1165 @@ msgstr ""
13
  "X-Poedit-Language: Portuguese\n"
14
  "X-Poedit-Country: PORTUGAL\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ..\n"
18
- "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
21
- #@ broken-link-checker
22
- #: core/core.php:146
23
  #: includes/admin/links-page-js.php:37
 
24
  msgid "Loading..."
25
  msgstr "Carregando..."
26
 
27
- #@ broken-link-checker
28
- #: core/core.php:170
29
  #: includes/admin/options-page-js.php:18
 
30
  msgid "[ Network error ]"
31
  msgstr "[ Problema na rede ]"
32
 
 
33
  #@ broken-link-checker
34
- #: core/core.php:195
35
  msgid "Automatically expand the widget if broken links have been detected"
36
  msgstr "Expandir automaticamente a caixa se existirem links offline"
37
 
 
38
  #@ broken-link-checker
39
- #: core/core.php:285
40
  msgid "Link Checker Settings"
41
  msgstr "Definições do Links offline"
42
 
 
43
  #@ broken-link-checker
44
- #: core/core.php:286
45
  msgid "Link Checker"
46
  msgstr "Links offline"
47
 
 
 
48
  #@ broken-link-checker
49
- #: core/core.php:291
50
- #: includes/link-query.php:26
51
  msgid "Broken Links"
52
  msgstr "Links offline"
53
 
 
54
  #@ broken-link-checker
55
- #: core/core.php:307
56
  msgid "View Broken Links"
57
  msgstr "Ver Links offline"
58
 
 
59
  #@ broken-link-checker
60
- #: core/core.php:322
61
  msgid "Feedback"
62
  msgstr "Feedback"
63
 
 
64
  #@ broken-link-checker
65
- #: core/core.php:337
66
  msgid "Go to Broken Links"
67
  msgstr "Ir a Links offline"
68
 
 
69
  #@ default
70
- #: core/core.php:366
71
  msgid "Settings"
72
  msgstr "Definições"
73
 
74
- #@ broken-link-checker
75
- #: core/core.php:378
76
- #: core/core.php:1167
77
  #, php-format
 
78
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
79
  msgstr "Erro: As tabelas do plugin na Base de dados não estão atualizadas! (Versão atual : %d, obrigatória : %d)"
80
 
 
 
81
  #@ broken-link-checker
82
- #: core/core.php:382
83
- #: core/core.php:1171
84
  msgid "Try deactivating and then reactivating the plugin."
85
  msgstr "Tente desativar e ativar o plugin."
86
 
 
87
  #@ broken-link-checker
88
- #: core/core.php:521
89
  msgid "Settings saved."
90
  msgstr "Definições guardadas."
91
 
 
92
  #@ broken-link-checker
93
- #: core/core.php:527
94
  msgid "Thank you for your donation!"
95
  msgstr "Obrigado pela sua colaboração!"
96
 
 
97
  #@ broken-link-checker
98
- #: core/core.php:534
99
  msgid "Complete site recheck started."
100
- msgstr "Re-verificação completa do sitío iniciada."
101
 
 
102
  #@ broken-link-checker
103
- #: core/core.php:543
104
  msgid "Details"
105
  msgstr "Detalhes"
106
 
 
107
  #@ broken-link-checker
108
- #: core/core.php:557
109
  msgid "General"
110
  msgstr "Geral"
111
 
 
112
  #@ broken-link-checker
113
- #: core/core.php:558
114
  msgid "Look For Links In"
115
  msgstr "Procurar links"
116
 
 
117
  #@ broken-link-checker
118
- #: core/core.php:559
119
  msgid "Which Links To Check"
120
  msgstr "Links para verificar"
121
 
 
122
  #@ broken-link-checker
123
- #: core/core.php:560
124
  msgid "Protocols & APIs"
125
  msgstr "Protocolos & APIs"
126
 
 
127
  #@ broken-link-checker
128
- #: core/core.php:561
129
  msgid "Advanced"
130
  msgstr "Avançado"
131
 
 
132
  #@ broken-link-checker
133
- #: core/core.php:576
134
  msgid "Broken Link Checker Options"
135
  msgstr "Opções : Links offline"
136
 
 
 
137
  #@ broken-link-checker
138
- #: core/core.php:618
139
- #: includes/admin/table-printer.php:195
140
  msgid "Status"
141
  msgstr "Estado"
142
 
143
- #@ broken-link-checker
144
- #: core/core.php:620
145
  #: includes/admin/options-page-js.php:56
 
146
  msgid "Show debug info"
147
  msgstr "Mostrar sistema"
148
 
 
149
  #@ broken-link-checker
150
- #: core/core.php:648
151
  msgid "Check each link"
152
  msgstr "Verificar cada link"
153
 
154
- #@ broken-link-checker
155
- #: core/core.php:653
156
  #, php-format
 
157
  msgid "Every %s hours"
158
  msgstr "Cada %s horas"
159
 
 
160
  #@ broken-link-checker
161
- #: core/core.php:662
162
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
163
  msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
164
 
 
165
  #@ broken-link-checker
166
- #: core/core.php:669
167
  msgid "E-mail notifications"
168
  msgstr "Notificações por e-mail"
169
 
 
170
  #@ broken-link-checker
171
- #: core/core.php:675
172
  msgid "Send me e-mail notifications about newly detected broken links"
173
  msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
174
 
 
175
  #@ broken-link-checker
176
- #: core/core.php:690
177
  msgid "Link tweaks"
178
  msgstr "Melhoria de Links"
179
 
 
180
  #@ broken-link-checker
181
- #: core/core.php:696
182
  msgid "Apply custom formatting to broken links"
183
  msgstr "Aplicar formatação personalizada para os links offline"
184
 
 
 
185
  #@ broken-link-checker
186
- #: core/core.php:700
187
- #: core/core.php:730
188
  msgid "Edit CSS"
189
  msgstr "Editar CSS"
190
 
 
191
  #@ broken-link-checker
192
- #: core/core.php:726
193
  msgid "Apply custom formatting to removed links"
194
  msgstr "Aplicar formatação personalizada para os links removidos"
195
 
 
196
  #@ broken-link-checker
197
- #: core/core.php:759
198
  msgid "Stop search engines from following broken links"
199
  msgstr "Não permitir aos motores de busca seguir os links offline"
200
 
 
201
  #@ broken-link-checker
202
- #: core/core.php:776
203
  msgid "Look for links in"
204
  msgstr "Procurar links em"
205
 
 
206
  #@ broken-link-checker
207
- #: core/core.php:787
208
  msgid "Post statuses"
209
  msgstr "Estado do Artigo"
210
 
 
211
  #@ broken-link-checker
212
- #: core/core.php:820
213
  msgid "Link types"
214
  msgstr "Tipos de link"
215
 
 
216
  #@ broken-link-checker
217
- #: core/core.php:826
218
  msgid "Error : All link parsers missing!"
219
  msgstr "Erro : Análises aos links não encontradas!"
220
 
 
221
  #@ broken-link-checker
222
- #: core/core.php:833
223
  msgid "Exclusion list"
224
  msgstr "Lista de exclusão"
225
 
 
226
  #@ broken-link-checker
227
- #: core/core.php:834
228
  msgid "Don't check links where the URL contains any of these words (one per line) :"
229
  msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
230
 
 
231
  #@ broken-link-checker
232
- #: core/core.php:852
233
  msgid "Check links using"
234
  msgstr "Verificar links utilizando"
235
 
 
 
236
  #@ broken-link-checker
237
- #: core/core.php:871
238
- #: includes/links.php:849
239
  msgid "Timeout"
240
  msgstr "Intervalo"
241
 
 
 
 
 
242
  #@ broken-link-checker
243
  #@ default
244
- #: core/core.php:877
245
- #: core/core.php:923
246
- #: core/core.php:2732
247
- #, php-format
248
  msgid "%s seconds"
249
  msgstr "%s segundos"
250
 
 
251
  #@ broken-link-checker
252
- #: core/core.php:886
253
  msgid "Links that take longer than this to load will be marked as broken."
254
  msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
255
 
 
256
  #@ broken-link-checker
257
- #: core/core.php:893
258
  msgid "Link monitor"
259
  msgstr "Monitor de links"
260
 
 
261
  #@ broken-link-checker
262
- #: core/core.php:901
263
  msgid "Run continuously while the Dashboard is open"
264
  msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
265
 
 
266
  #@ broken-link-checker
267
- #: core/core.php:909
268
  msgid "Run hourly in the background"
269
  msgstr "Executar a cada hora em segundo plano"
270
 
 
271
  #@ broken-link-checker
272
- #: core/core.php:917
273
  msgid "Max. execution time"
274
  msgstr "Tempo máximo de execução"
275
 
 
276
  #@ broken-link-checker
277
- #: core/core.php:934
278
  msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
279
- msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analiza os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
280
 
 
281
  #@ broken-link-checker
282
- #: core/core.php:943
283
  msgid "Server load limit"
284
  msgstr "Limite de carregamento do servidor"
285
 
286
- #@ broken-link-checker
287
- #: core/core.php:958
288
  #, php-format
 
289
  msgid "Current load : %s"
290
- msgstr "Carga actual : %s"
291
 
292
- #@ broken-link-checker
293
- #: core/core.php:964
294
  #, php-format
 
295
  msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
296
  msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
297
 
 
298
  #@ broken-link-checker
299
- #: core/core.php:972
300
  msgid "Not available"
301
  msgstr "Não disponível"
302
 
 
303
  #@ broken-link-checker
304
- #: core/core.php:974
305
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
306
  msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
307
 
 
308
  #@ broken-link-checker
309
- #: core/core.php:982
310
  msgid "Forced recheck"
311
- msgstr "Re-verificação forçada"
312
 
 
313
  #@ broken-link-checker
314
- #: core/core.php:985
315
  msgid "Re-check all pages"
316
  msgstr "Verificar de novo todas as páginas"
317
 
 
318
  #@ broken-link-checker
319
- #: core/core.php:989
320
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
321
- msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados e re-verificar todo o sítio desde o início."
322
 
 
323
  #@ default
324
- #: core/core.php:1000
325
  msgid "Save Changes"
326
  msgstr "Guardar alterações"
327
 
 
328
  #@ broken-link-checker
329
- #: core/core.php:1051
330
  msgid "Configure"
331
  msgstr "Configurar"
332
 
 
333
  #@ broken-link-checker
334
- #: core/core.php:1133
335
  msgid "Check URLs entered in these custom fields (one per line) :"
336
  msgstr "Verificar URLs nos campos personalizados (um por linha):"
337
 
338
- #@ broken-link-checker
339
- #: core/core.php:1270
340
- #: core/core.php:1351
341
- #: core/core.php:1383
342
  #, php-format
 
343
  msgid "Database error : %s"
344
  msgstr "Erro na Base de dados: %s"
345
 
 
346
  #@ broken-link-checker
347
- #: core/core.php:1333
348
  msgid "You must enter a filter name!"
349
  msgstr "Deve introduzir um nome para o filtro!"
350
 
 
351
  #@ broken-link-checker
352
- #: core/core.php:1337
353
  msgid "Invalid search query."
354
  msgstr "Procura inválida."
355
 
356
- #@ broken-link-checker
357
- #: core/core.php:1346
358
  #, php-format
 
359
  msgid "Filter \"%s\" created"
360
  msgstr "Filtro \"%s\" criado"
361
 
 
362
  #@ broken-link-checker
363
- #: core/core.php:1373
364
  msgid "Filter ID not specified."
365
  msgstr "ID do Filtro não especificado."
366
 
 
367
  #@ broken-link-checker
368
- #: core/core.php:1380
369
  msgid "Filter deleted"
370
  msgstr "Filtro eliminado"
371
 
372
- #@ broken-link-checker
373
- #: core/core.php:1428
374
  #, php-format
 
375
  msgid "Replaced %d redirect with a direct link"
376
  msgid_plural "Replaced %d redirects with direct links"
377
  msgstr[0] "Substituído %d redirect com link direto"
378
  msgstr[1] "Substituídos %d redirects com links diretos"
379
 
380
- #@ broken-link-checker
381
- #: core/core.php:1439
382
  #, php-format
 
383
  msgid "Failed to fix %d redirect"
384
  msgid_plural "Failed to fix %d redirects"
385
  msgstr[0] "Não foi possível reparar %d redirect"
386
  msgstr[1] "Não foi possível reparar %d redirects"
387
 
 
388
  #@ broken-link-checker
389
- #: core/core.php:1449
390
  msgid "None of the selected links are redirects!"
391
  msgstr "Nenhum dos links selecionados são redirects!"
392
 
393
- #@ broken-link-checker
394
- #: core/core.php:1528
395
  #, php-format
 
396
  msgid "%d link updated."
397
  msgid_plural "%d links updated."
398
  msgstr[0] "%d link atualizado."
399
  msgstr[1] "%d links atualizados."
400
 
401
- #@ broken-link-checker
402
- #: core/core.php:1539
403
  #, php-format
 
404
  msgid "Failed to update %d link."
405
  msgid_plural "Failed to update %d links."
406
  msgstr[0] "Erro a atualizar %d link."
407
  msgstr[1] "Erro a atualizar %d links."
408
 
409
- #@ broken-link-checker
410
- #: core/core.php:1593
411
  #, php-format
 
412
  msgid "%d link removed"
413
  msgid_plural "%d links removed"
414
  msgstr[0] "%d link eliminado"
415
  msgstr[1] "%d links eliminados"
416
 
417
- #@ broken-link-checker
418
- #: core/core.php:1604
419
  #, php-format
 
420
  msgid "Failed to remove %d link"
421
  msgid_plural "Failed to remove %d links"
422
  msgstr[0] "Erro a remover %d link"
423
  msgstr[1] "Erro a remover %d links"
424
 
425
- #@ default
426
- #: core/core.php:1713
427
  #, php-format
 
428
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
429
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
430
  msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
431
  msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
432
 
 
433
  #@ broken-link-checker
434
- #: core/core.php:1734
435
  msgid "Didn't find anything to delete!"
436
  msgstr "Não foi encontrado nada para apagar!"
437
 
438
- #@ broken-link-checker
439
- #: core/core.php:1763
440
  #, php-format
 
441
  msgid "%d link scheduled for rechecking"
442
  msgid_plural "%d links scheduled for rechecking"
443
  msgstr[0] "%d link agendado para verificação"
444
  msgstr[1] "%d links agendados para verificação"
445
 
 
 
446
  #@ broken-link-checker
447
- #: core/core.php:1808
448
- #: core/core.php:2412
449
  msgid "This link was manually marked as working by the user."
450
  msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
451
 
452
- #@ broken-link-checker
453
- #: core/core.php:1815
454
  #, php-format
 
455
  msgid "Couldn't modify link %d"
456
  msgstr "Impossível modificar o link %d"
457
 
458
- #@ broken-link-checker
459
- #: core/core.php:1826
460
  #, php-format
 
461
  msgid "%d link marked as not broken"
462
  msgid_plural "%d links marked as not broken"
463
  msgstr[0] "%d link marcado como funcional"
464
  msgstr[1] "%d links marcados como funcionais"
465
 
 
466
  #@ broken-link-checker
467
- #: core/core.php:1865
468
  msgid "Table columns"
469
  msgstr "Colunas da Tabela"
470
 
 
471
  #@ default
472
- #: core/core.php:1884
473
  msgid "Show on screen"
474
  msgstr "Mostrar no ecrán"
475
 
 
476
  #@ broken-link-checker
477
- #: core/core.php:1891
478
  msgid "links"
479
  msgstr "links"
480
 
 
 
481
  #@ default
482
  #@ broken-link-checker
483
- #: core/core.php:1892
484
- #: includes/admin/table-printer.php:163
485
  msgid "Apply"
486
  msgstr "Aplicar"
487
 
 
488
  #@ broken-link-checker
489
- #: core/core.php:1896
490
  msgid "Misc"
491
  msgstr "Vários"
492
 
493
- #@ broken-link-checker
494
- #: core/core.php:1911
495
  #, php-format
 
496
  msgid "Highlight links broken for at least %s days"
497
  msgstr "Realçar links offline pelo menos durante %s dias"
498
 
 
499
  #@ broken-link-checker
500
- #: core/core.php:1920
501
  msgid "Color-code status codes"
502
  msgstr "Cor-código status códigos"
503
 
 
 
 
 
 
504
  #@ broken-link-checker
505
- #: core/core.php:1937
506
- #: core/core.php:2397
507
- #: core/core.php:2433
508
- #: core/core.php:2496
509
  msgid "You're not allowed to do that!"
510
  msgstr "Não permitido!"
511
 
 
512
  #@ broken-link-checker
513
- #: core/core.php:2278
514
  msgid "View broken links"
515
  msgstr "Ver links offline"
516
 
517
- #@ broken-link-checker
518
- #: core/core.php:2279
519
  #, php-format
 
520
  msgid "Found %d broken link"
521
  msgid_plural "Found %d broken links"
522
  msgstr[0] "Encontrado %d Link offline"
523
  msgstr[1] "Encontrados %d Links offline"
524
 
 
525
  #@ broken-link-checker
526
- #: core/core.php:2285
527
  msgid "No broken links found."
528
  msgstr "Não existem links offline."
529
 
530
- #@ broken-link-checker
531
- #: core/core.php:2292
532
  #, php-format
 
533
  msgid "%d URL in the work queue"
534
  msgid_plural "%d URLs in the work queue"
535
  msgstr[0] "%d URL em espera"
536
  msgstr[1] "%d URLs em espera"
537
 
 
538
  #@ broken-link-checker
539
- #: core/core.php:2295
540
  msgid "No URLs in the work queue."
541
  msgstr "Não existem URL em espera para verificação."
542
 
543
- #@ broken-link-checker
544
- #: core/core.php:2301
545
  #, php-format
 
546
  msgid "Detected %d unique URL"
547
  msgid_plural "Detected %d unique URLs"
548
  msgstr[0] "Encontrada %d URL única"
549
  msgstr[1] "Encontradas %d URL únicas"
550
 
551
- #@ broken-link-checker
552
- #: core/core.php:2302
553
  #, php-format
 
554
  msgid "in %d link"
555
  msgid_plural "in %d links"
556
  msgstr[0] "em %d link"
557
  msgstr[1] "em %d links"
558
 
 
559
  #@ broken-link-checker
560
- #: core/core.php:2307
561
  msgid "and still searching..."
562
  msgstr "e procurando..."
563
 
 
564
  #@ broken-link-checker
565
- #: core/core.php:2313
566
  msgid "Searching your blog for links..."
567
  msgstr "Procurando links..."
568
 
 
569
  #@ broken-link-checker
570
- #: core/core.php:2315
571
  msgid "No links detected."
572
  msgstr "Nenhuns links encontrados."
573
 
574
- #@ broken-link-checker
575
- #: core/core.php:2405
576
- #: core/core.php:2443
577
- #: core/core.php:2506
578
  #, php-format
 
579
  msgid "Oops, I can't find the link %d"
580
  msgstr "Oops, não é possível encontrar o link %d"
581
 
 
 
582
  #@ broken-link-checker
583
- #: core/core.php:2418
584
  msgid "Oops, couldn't modify the link!"
585
  msgstr "Oops, não é possível modificar o link!"
586
 
 
 
 
587
  #@ broken-link-checker
588
- #: core/core.php:2421
589
- #: core/core.php:2532
590
  msgid "Error : link_id not specified"
591
  msgstr "Erro : link_id não especificado"
592
 
 
593
  #@ broken-link-checker
594
- #: core/core.php:2453
595
  msgid "Oops, the new URL is invalid!"
596
  msgstr "Oops, a nova URL não é válida!"
597
 
 
 
598
  #@ broken-link-checker
599
- #: core/core.php:2464
600
- #: core/core.php:2515
601
  msgid "An unexpected error occured!"
602
  msgstr "Ocorreu um erro inesperado!"
603
 
 
604
  #@ broken-link-checker
605
- #: core/core.php:2482
606
  msgid "Error : link_id or new_url not specified"
607
  msgstr "Erro : link_id ou new_url não especificado"
608
 
 
609
  #@ broken-link-checker
610
- #: core/core.php:2541
611
  msgid "You don't have sufficient privileges to access this information!"
612
- msgstr "Não tem previlégios suficientes para aceder a esta informação!"
613
 
 
614
  #@ broken-link-checker
615
- #: core/core.php:2554
616
  msgid "Error : link ID not specified"
617
  msgstr "Erro : link ID não especificado"
618
 
619
- #@ broken-link-checker
620
- #: core/core.php:2568
621
  #, php-format
 
622
  msgid "Failed to load link details (%s)"
623
  msgstr "Erro a carregar os detalhes do link (%s)"
624
 
 
625
  #@ broken-link-checker
626
- #: core/core.php:2621
627
  msgid "Broken Link Checker"
628
  msgstr "Links offline"
629
 
 
630
  #@ broken-link-checker
631
- #: core/core.php:2641
632
  msgid "PHP version"
633
  msgstr "Versão PHP"
634
 
 
635
  #@ broken-link-checker
636
- #: core/core.php:2647
637
  msgid "MySQL version"
638
  msgstr "Versão MySQL"
639
 
 
640
  #@ broken-link-checker
641
- #: core/core.php:2660
642
  msgid "You have an old version of CURL. Redirect detection may not work properly."
643
  msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
644
 
 
 
 
645
  #@ broken-link-checker
646
- #: core/core.php:2672
647
- #: core/core.php:2688
648
- #: core/core.php:2693
649
  msgid "Not installed"
650
  msgstr "Não instalado"
651
 
 
652
  #@ broken-link-checker
653
- #: core/core.php:2675
654
  msgid "CURL version"
655
  msgstr "Versão CURL"
656
 
 
657
  #@ broken-link-checker
658
- #: core/core.php:2681
659
  msgid "Installed"
660
  msgstr "Instalado"
661
 
 
662
  #@ broken-link-checker
663
- #: core/core.php:2694
664
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
665
  msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
666
 
 
667
  #@ broken-link-checker
668
- #: core/core.php:2705
669
  msgid "On"
670
  msgstr "Ativado"
671
 
 
672
  #@ broken-link-checker
673
- #: core/core.php:2706
674
  msgid "Redirects may be detected as broken links when safe_mode is on."
675
- msgstr "Os redirects podem ser detectados como links offline quando o safe_mode está habilitado."
676
 
 
 
677
  #@ broken-link-checker
678
- #: core/core.php:2711
679
- #: core/core.php:2725
680
  msgid "Off"
681
  msgstr "Desativado"
682
 
683
- #@ broken-link-checker
684
- #: core/core.php:2719
685
  #, php-format
 
686
  msgid "On ( %s )"
687
  msgstr "Ativado ( %s )"
688
 
 
689
  #@ broken-link-checker
690
- #: core/core.php:2720
691
  msgid "Redirects may be detected as broken links when open_basedir is on."
692
  msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
693
 
 
694
  #@ broken-link-checker
695
- #: core/core.php:2749
696
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
697
  msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
698
 
699
- #@ broken-link-checker
700
- #: core/core.php:2840
701
- #: core/core.php:2938
702
  #, php-format
 
703
  msgid "[%s] Broken links detected"
704
  msgstr "[%s] Links offline encontrados"
705
 
706
- #@ broken-link-checker
707
- #: core/core.php:2846
708
  #, php-format
 
709
  msgid "Broken Link Checker has detected %d new broken link on your site."
710
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
711
  msgstr[0] "Links offline detetou %d novo link sem ligação."
712
  msgstr[1] "Links offline detetou %d novos links sem ligação."
713
 
714
- #@ broken-link-checker
715
- #: core/core.php:2869
716
  #, php-format
 
717
  msgid "Here's a list of the first %d broken links:"
718
  msgid_plural "Here's a list of the first %d broken links:"
719
  msgstr[0] "Lista do primeiro %d link sem ligação:"
720
  msgstr[1] "Lista dos primeiros %d links sem ligação:"
721
 
 
722
  #@ broken-link-checker
723
- #: core/core.php:2877
724
  msgid "Here's a list of the new broken links: "
725
  msgstr "Novos links offline:"
726
 
727
- #@ broken-link-checker
728
- #: core/core.php:2886
729
  #, php-format
 
730
  msgid "Link text : %s"
731
  msgstr "Texto do Link : %s"
732
 
733
- #@ broken-link-checker
734
- #: core/core.php:2887
735
  #, php-format
 
736
  msgid "Link URL : <a href=\"%s\">%s</a>"
737
  msgstr "Link URL : <a href=\"%s\">%s</a>"
738
 
739
- #@ broken-link-checker
740
- #: core/core.php:2888
741
  #, php-format
 
742
  msgid "Source : %s"
743
  msgstr "Fonte : %s"
744
 
 
745
  #@ broken-link-checker
746
- #: core/core.php:2901
747
  msgid "You can see all broken links here:"
748
  msgstr "Links offline:"
749
 
 
750
  #@ default
751
- #: core/init.php:231
752
  msgid "Once Weekly"
753
  msgstr "Uma vez por semana"
754
 
 
755
  #@ default
756
- #: core/init.php:237
757
  msgid "Twice a Month"
758
  msgstr "Bi-Mensal"
759
 
 
760
  #@ broken-link-checker
761
- #: core/init.php:307
762
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
763
  msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
764
 
765
- #@ default
766
  #: includes/any-post.php:397
767
  #: modules/containers/blogroll.php:46
768
  #: modules/containers/comment.php:153
769
  #: modules/containers/custom_field.php:197
 
770
  msgid "Edit"
771
  msgstr "Editar"
772
 
773
- #@ default
774
  #: includes/any-post.php:405
775
  #: modules/containers/custom_field.php:203
 
776
  msgid "Move this item to the Trash"
777
  msgstr "Apagar este item"
778
 
779
- #@ default
780
  #: includes/any-post.php:407
781
  #: modules/containers/custom_field.php:205
 
782
  msgid "Trash"
783
  msgstr "Lixo"
784
 
785
- #@ default
786
  #: includes/any-post.php:412
787
  #: modules/containers/custom_field.php:210
 
788
  msgid "Delete this item permanently"
789
  msgstr "Apagar este item definitivamente"
790
 
791
- #@ default
792
  #: includes/any-post.php:414
793
  #: modules/containers/blogroll.php:47
794
  #: modules/containers/custom_field.php:212
 
795
  msgid "Delete"
796
  msgstr "Apagar"
797
 
798
- #@ default
799
  #: includes/any-post.php:427
800
  #, php-format
 
801
  msgid "Preview &#8220;%s&#8221;"
802
  msgstr "Pré-vizualizar &#8220;%s&#8221;"
803
 
804
- #@ default
805
  #: includes/any-post.php:428
 
806
  msgid "Preview"
807
  msgstr "Pré-visualizar"
808
 
809
- #@ default
810
  #: includes/any-post.php:435
811
  #, php-format
 
812
  msgid "View &#8220;%s&#8221;"
813
  msgstr "Visualizar &#8220;%s&#8221;"
814
 
815
- #@ default
816
  #: includes/any-post.php:436
817
  #: modules/containers/comment.php:166
818
  #: modules/containers/custom_field.php:217
 
819
  msgid "View"
820
  msgstr "Ver"
821
 
822
- #@ default
823
  #: includes/any-post.php:455
824
  #: modules/containers/custom_field.php:197
 
825
  msgid "Edit this item"
826
  msgstr "Editar este item"
827
 
828
- #@ broken-link-checker
829
  #: includes/any-post.php:519
830
  #: modules/containers/blogroll.php:83
831
  #: modules/containers/comment.php:43
 
832
  msgid "Nothing to update"
833
  msgstr "Sem atualização"
834
 
835
- #@ broken-link-checker
836
  #: includes/any-post.php:529
837
  #, php-format
 
838
  msgid "Updating post %d failed"
839
  msgstr "Atualização do artigo %d falhou"
840
 
841
- #@ broken-link-checker
842
  #: includes/any-post.php:564
843
  #: modules/containers/custom_field.php:284
844
  #, php-format
 
845
  msgid "Failed to delete post \"%s\" (%d)"
846
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
847
 
848
- #@ broken-link-checker
849
  #: includes/any-post.php:583
850
  #: modules/containers/custom_field.php:303
851
  #, php-format
 
852
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
853
  msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
854
 
855
- #@ broken-link-checker
856
  #: includes/any-post.php:603
857
  #: modules/containers/custom_field.php:322
858
  #, php-format
 
859
  msgid "Failed to move post \"%s\" (%d) to the trash"
860
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
861
 
862
- #@ broken-link-checker
863
  #: includes/any-post.php:711
864
  #, php-format
 
865
  msgid "%d post deleted."
866
  msgid_plural "%d posts deleted."
867
  msgstr[0] "%d artigo apagado."
868
  msgstr[1] "%d artigos apagados."
869
 
870
- #@ broken-link-checker
871
  #: includes/any-post.php:713
872
  #, php-format
 
873
  msgid "%d page deleted."
874
  msgid_plural "%d pages deleted."
875
  msgstr[0] "%d página apagada."
876
  msgstr[1] "%d páginas apagadas."
877
 
878
- #@ broken-link-checker
879
  #: includes/any-post.php:715
880
  #, php-format
 
881
  msgid "%d \"%s\" deleted."
882
  msgid_plural "%d \"%s\" deleted."
883
  msgstr[0] "%d \"%s\" apagado."
884
  msgstr[1] "%d \"%s\" apagados."
885
 
886
- #@ broken-link-checker
887
  #: includes/any-post.php:734
888
  #, php-format
 
889
  msgid "%d post moved to the Trash."
890
  msgid_plural "%d posts moved to the Trash."
891
  msgstr[0] "%d artigo transferido para o Lixo."
892
  msgstr[1] "%d artigos transferidos para o Lixo."
893
 
894
- #@ broken-link-checker
895
  #: includes/any-post.php:736
896
  #, php-format
 
897
  msgid "%d page moved to the Trash."
898
  msgid_plural "%d pages moved to the Trash."
899
  msgstr[0] "%d página transferida para o Lixo."
900
  msgstr[1] "%d páginas transferidas para o Lixo."
901
 
902
- #@ broken-link-checker
903
  #: includes/any-post.php:738
904
  #, php-format
 
905
  msgid "%d \"%s\" moved to the Trash."
906
  msgid_plural "%d \"%s\" moved to the Trash."
907
  msgstr[0] "%d \"%s\" transferido para o Lixo."
908
  msgstr[1] "%d \"%s\" transferidos para o Lixo."
909
 
910
- #@ broken-link-checker
911
  #: includes/containers.php:123
912
  #, php-format
 
913
  msgid "%d '%s' has been deleted"
914
  msgid_plural "%d '%s' have been deleted"
915
  msgstr[0] "%d '%s' foi apagado"
916
  msgstr[1] "%d '%s' foram apagados"
917
 
918
- #@ broken-link-checker
919
  #: includes/containers.php:873
920
  #: includes/containers.php:891
921
  #, php-format
 
922
  msgid "Container type '%s' not recognized"
923
  msgstr "Recipiente tipo '%s' não foi reconhecido"
924
 
925
- #@ broken-link-checker
926
  #: includes/instances.php:102
927
  #: includes/instances.php:158
928
  #, php-format
 
929
  msgid "Container %s[%d] not found"
930
  msgstr "Recipiente %s[%d] não encontrado"
931
 
932
- #@ broken-link-checker
933
  #: includes/instances.php:111
934
  #: includes/instances.php:167
935
  #, php-format
 
936
  msgid "Parser '%s' not found."
937
- msgstr "Analizador sintáctico '%s' não encontrado."
938
 
 
939
  #@ broken-link-checker
940
- #: includes/link-query.php:25
941
  msgid "Broken"
942
  msgstr "Offline"
943
 
 
944
  #@ broken-link-checker
945
- #: includes/link-query.php:27
946
  msgid "No broken links found"
947
  msgstr "Links offline (0)"
948
 
 
949
  #@ broken-link-checker
950
- #: includes/link-query.php:34
951
  msgid "Redirects"
952
  msgstr "Redirects"
953
 
 
954
  #@ broken-link-checker
955
- #: includes/link-query.php:35
956
  msgid "Redirected Links"
957
  msgstr "Links Redirects"
958
 
 
959
  #@ broken-link-checker
960
- #: includes/link-query.php:36
961
  msgid "No redirects found"
962
  msgstr "Redirects (0)"
963
 
 
964
  #@ broken-link-checker
965
- #: includes/link-query.php:44
966
  msgid "All"
967
  msgstr "Todos"
968
 
 
969
  #@ broken-link-checker
970
- #: includes/link-query.php:45
971
  msgid "Detected Links"
972
  msgstr "Links encontrados"
973
 
 
974
  #@ broken-link-checker
975
- #: includes/link-query.php:46
976
  msgid "No links found (yet)"
977
  msgstr "Links (0)"
978
 
979
- #@ broken-link-checker
980
  #: includes/admin/search-form.php:32
981
- #: includes/link-query.php:53
 
982
  msgid "Search"
983
  msgstr "Procurar"
984
 
 
985
  #@ broken-link-checker
986
- #: includes/link-query.php:54
987
  msgid "Search Results"
988
  msgstr "Resultados da procura"
989
 
 
 
990
  #@ broken-link-checker
991
- #: includes/link-query.php:55
992
- #: includes/link-query.php:102
993
  msgid "No links found for your query"
994
  msgstr "Sem resultados"
995
 
 
996
  #@ broken-link-checker
997
- #: includes/links.php:215
998
  msgid "The plugin script was terminated while trying to check the link."
999
  msgstr "O script do plugin terminou enquanto tentava verificar o link."
1000
 
 
1001
  #@ broken-link-checker
1002
- #: includes/links.php:261
1003
  msgid "The plugin doesn't know how to check this type of link."
1004
  msgstr "O plugin não consegue verificar este tipo de link."
1005
 
 
1006
  #@ broken-link-checker
1007
- #: includes/links.php:349
1008
  msgid "Link is valid."
1009
  msgstr "Link operacional."
1010
 
 
1011
  #@ broken-link-checker
1012
- #: includes/links.php:351
1013
  msgid "Link is broken."
1014
  msgstr "Link sem ligação."
1015
 
 
 
 
1016
  #@ broken-link-checker
1017
- #: includes/links.php:564
1018
- #: includes/links.php:666
1019
- #: includes/links.php:693
1020
  msgid "Link is not valid"
1021
  msgstr "Link inválido"
1022
 
 
1023
  #@ broken-link-checker
1024
- #: includes/links.php:581
1025
  msgid "This link can not be edited because it is not used anywhere on this site."
1026
  msgstr "Este link não pode ser editado porque não é utilizado no sítio."
1027
 
 
1028
  #@ broken-link-checker
1029
- #: includes/links.php:607
1030
  msgid "Failed to create a DB entry for the new URL."
1031
- msgstr "Falhou a criação de um registro na Base de dados para um novo URL."
1032
 
 
1033
  #@ broken-link-checker
1034
- #: includes/links.php:673
1035
  msgid "This link is not a redirect"
1036
  msgstr "O link não é um redirect"
1037
 
 
 
1038
  #@ broken-link-checker
1039
- #: includes/links.php:720
1040
- #: includes/links.php:757
1041
  msgid "Couldn't delete the link's database record"
1042
- msgstr "Não é possível apagar o registro do link na Base de dados"
1043
 
1044
- #@ link status
1045
- #@ broken-link-checker
1046
- #: includes/links.php:845
1047
  #: modules/checkers/http.php:264
1048
  #: modules/extras/mediafire.php:101
 
 
1049
  msgid "Unknown Error"
1050
  msgstr "Erro Desconhecido"
1051
 
 
1052
  #@ broken-link-checker
1053
- #: includes/links.php:869
1054
  msgid "Not checked"
1055
  msgstr "Não verificado"
1056
 
 
1057
  #@ broken-link-checker
1058
- #: includes/links.php:872
1059
  msgid "False positive"
1060
- msgstr "Falso postivo"
1061
 
1062
- #@ link status
1063
  #: modules/extras/youtube.php:105
1064
  #: modules/extras/youtube.php:132
 
1065
  msgid "OK"
1066
  msgstr "OK"
1067
 
1068
- #@ broken-link-checker
1069
  #: includes/parsers.php:109
1070
  #, php-format
 
1071
  msgid "Editing is not implemented in the '%s' parser"
1072
- msgstr "Edição não implementada no '%s' analizador sintáctico"
1073
 
1074
- #@ broken-link-checker
1075
  #: includes/parsers.php:124
1076
  #, php-format
 
1077
  msgid "Unlinking is not implemented in the '%s' parser"
1078
- msgstr "Remover links não foi implementado no '%s' analizador sintáctico"
1079
 
1080
- #@ broken-link-checker
1081
  #: includes/admin/db-upgrade.php:95
1082
  #, php-format
 
1083
  msgid "Failed to delete old DB tables. Database error : %s"
1084
  msgstr "Não foi possível apagar as tabelas antigas da Base de dados. Erro de Base de dados : %s"
1085
 
 
 
1086
  #@ broken-link-checker
1087
- #: includes/admin/links-page-js.php:58
1088
- #: includes/admin/links-page-js.php:301
1089
  msgid "Wait..."
1090
  msgstr "Espere ..."
1091
 
 
 
1092
  #@ broken-link-checker
1093
- #: includes/admin/links-page-js.php:99
1094
- #: includes/admin/table-printer.php:616
1095
  msgid "Not broken"
1096
  msgstr "Funcional"
1097
 
1098
- #@ broken-link-checker
1099
- #: includes/admin/links-page-js.php:213
1100
  #, php-format
 
1101
  msgid "%d instances of the link were successfully modified."
1102
  msgstr "%d casos de links que se modificaram com sucesso."
1103
 
1104
- #@ broken-link-checker
1105
- #: includes/admin/links-page-js.php:219
1106
  #, php-format
 
1107
  msgid "However, %d instances couldn't be edited and still point to the old URL."
1108
  msgstr "No entanto, %d casos não puderam ser editados e ainda apontam para a antiga URL."
1109
 
 
1110
  #@ broken-link-checker
1111
- #: includes/admin/links-page-js.php:225
1112
  msgid "The link could not be modified."
1113
  msgstr "O link não pode ser modificado."
1114
 
 
 
1115
  #@ broken-link-checker
1116
- #: includes/admin/links-page-js.php:228
1117
- #: includes/admin/links-page-js.php:353
1118
  msgid "The following error(s) occured :"
1119
  msgstr "Erro(s) :"
1120
 
1121
- #@ broken-link-checker
1122
- #: includes/admin/links-page-js.php:339
1123
  #, php-format
 
1124
  msgid "%d instances of the link were successfully unlinked."
1125
  msgstr "%d casos de links foram removidos com sucesso."
1126
 
1127
- #@ broken-link-checker
1128
- #: includes/admin/links-page-js.php:345
1129
  #, php-format
 
1130
  msgid "However, %d instances couldn't be removed."
1131
  msgstr "No entanto, %d casos não foram removidos."
1132
 
 
1133
  #@ broken-link-checker
1134
- #: includes/admin/links-page-js.php:350
1135
  msgid "The plugin failed to remove the link."
1136
  msgstr "O plugin não apagou o link."
1137
 
 
 
 
1138
  #@ broken-link-checker
1139
- #: includes/admin/links-page-js.php:361
1140
- #: includes/admin/table-printer.php:266
1141
- #: includes/admin/table-printer.php:610
1142
  msgid "Unlink"
1143
  msgstr "Remover link"
1144
 
 
1145
  #@ broken-link-checker
1146
- #: includes/admin/links-page-js.php:405
1147
  msgid "Enter a name for the new custom filter"
1148
  msgstr "Introduza o nome para o novo filtro personalizado"
1149
 
 
1150
  #@ broken-link-checker
1151
- #: includes/admin/links-page-js.php:416
1152
  msgid ""
1153
  "You are about to delete the current filter.\n"
1154
  "'Cancel' to stop, 'OK' to delete"
1155
  msgstr ""
1156
- "Está a ponto de apagar o filtro actual.\n"
1157
  " 'Cancelar' para sair, 'Aceitar' para apagar"
1158
 
 
1159
  #@ broken-link-checker
1160
- #: includes/admin/links-page-js.php:439
1161
  msgid ""
1162
  "Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
1163
  "'Cancel' to stop, 'OK' to delete"
1164
  msgstr ""
1165
- "Tem a certeza que deseja eliminar todos os artigos, favoritos ou outros itens que contenham quaisquer dos links seleccionados? Esta ação não pode ser anulada.\n"
1166
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1167
 
 
1168
  #@ broken-link-checker
1169
- #: includes/admin/links-page-js.php:449
1170
  msgid ""
1171
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
1172
  "'Cancel' to stop, 'OK' to remove"
@@ -1174,357 +1179,357 @@ msgstr ""
1174
  "Tem a certeza que deseja eliminar todos os links selecionados? Esta ação não pode ser anulada.\n"
1175
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1176
 
 
1177
  #@ broken-link-checker
1178
- #: includes/admin/links-page-js.php:558
1179
  msgid "Enter a search string first."
1180
  msgstr "Introduza primeiro uma string de procura."
1181
 
 
1182
  #@ broken-link-checker
1183
- #: includes/admin/links-page-js.php:565
1184
  msgid "Select one or more links to edit."
1185
  msgstr "Selecione um ou mais links para editar."
1186
 
1187
- #@ broken-link-checker
1188
  #: includes/admin/options-page-js.php:54
 
1189
  msgid "Hide debug info"
1190
  msgstr "Ocultar informação"
1191
 
1192
- #@ broken-link-checker
1193
  #: includes/admin/search-form.php:16
 
1194
  msgid "Save This Search As a Filter"
1195
  msgstr "Gravar esta Procura como um Filtro"
1196
 
1197
- #@ broken-link-checker
1198
  #: includes/admin/search-form.php:26
 
1199
  msgid "Delete This Filter"
1200
  msgstr "Apagar Filtro"
1201
 
1202
- #@ broken-link-checker
1203
  #: includes/admin/search-form.php:42
 
1204
  msgid "Link text"
1205
  msgstr "Texto do link"
1206
 
1207
- #@ broken-link-checker
1208
  #: includes/admin/search-form.php:45
1209
- #: includes/admin/table-printer.php:200
 
1210
  msgid "URL"
1211
  msgstr "URL"
1212
 
1213
- #@ broken-link-checker
1214
  #: includes/admin/search-form.php:48
1215
- #: includes/admin/table-printer.php:484
 
1216
  msgid "HTTP code"
1217
  msgstr "Código HTTP"
1218
 
1219
- #@ broken-link-checker
1220
  #: includes/admin/search-form.php:51
 
1221
  msgid "Link status"
1222
  msgstr "Estado do link"
1223
 
1224
- #@ broken-link-checker
1225
  #: includes/admin/search-form.php:68
1226
  #: includes/admin/search-form.php:85
 
1227
  msgid "Link type"
1228
  msgstr "Tipo de link"
1229
 
1230
- #@ broken-link-checker
1231
  #: includes/admin/search-form.php:70
 
1232
  msgid "Any"
1233
  msgstr "Qualquer"
1234
 
1235
- #@ broken-link-checker
1236
  #: includes/admin/search-form.php:74
 
1237
  msgid "Links used in"
1238
  msgstr "Links utilizados em"
1239
 
1240
- #@ broken-link-checker
1241
  #: includes/admin/search-form.php:112
 
1242
  msgid "Search Links"
1243
  msgstr "Procurar"
1244
 
1245
- #@ broken-link-checker
1246
  #: includes/admin/search-form.php:113
1247
- #: includes/admin/table-printer.php:342
1248
- #: includes/admin/table-printer.php:624
1249
- #: includes/admin/table-printer.php:630
 
1250
  msgid "Cancel"
1251
  msgstr "Cancelar"
1252
 
 
1253
  #@ broken-link-checker
1254
- #: includes/admin/sidebar.php:40
1255
  msgid "Donate $10, $20 or $50!"
1256
  msgstr "Doar $10, $20 ou $50!"
1257
 
 
1258
  #@ broken-link-checker
1259
- #: includes/admin/sidebar.php:43
1260
  msgid "If you like this plugin, please donate to support development and maintenance!"
1261
  msgstr "Se gosta deste plugin, por favor faça um donativo para financiar o seu desenvolvimento e manutenção!"
1262
 
 
1263
  #@ broken-link-checker
1264
- #: includes/admin/sidebar.php:60
1265
  msgid "Return to WordPress Dashboard"
1266
  msgstr "Regressar ao Painel"
1267
 
 
 
1268
  #@ broken-link-checker
1269
- #: core/core.php:330
1270
- #: includes/admin/sidebar.php:18
1271
  msgid "More plugins by Janis Elsts"
1272
  msgstr "Mais plugins de Janis Elsts"
1273
 
 
1274
  #@ broken-link-checker
1275
- #: includes/admin/table-printer.php:177
1276
  msgid "Compact View"
1277
  msgstr "Visão compacta"
1278
 
 
1279
  #@ broken-link-checker
1280
- #: includes/admin/table-printer.php:178
1281
  msgid "Detailed View"
1282
  msgstr "Detalhes"
1283
 
 
1284
  #@ broken-link-checker
1285
- #: includes/admin/table-printer.php:207
1286
  msgid "Source"
1287
  msgstr "Fonte"
1288
 
 
1289
  #@ broken-link-checker
1290
- #: includes/admin/table-printer.php:213
1291
  msgid "Link Text"
1292
  msgstr "Texto do Link"
1293
 
 
1294
  #@ broken-link-checker
1295
- #: includes/admin/table-printer.php:261
1296
  msgid "Bulk Actions"
1297
  msgstr "Edição em Massa"
1298
 
 
 
1299
  #@ broken-link-checker
1300
- #: includes/admin/table-printer.php:262
1301
- #: includes/admin/table-printer.php:607
1302
  msgid "Edit URL"
1303
  msgstr "Editar URL"
1304
 
 
1305
  #@ broken-link-checker
1306
- #: includes/admin/table-printer.php:263
1307
  msgid "Recheck"
1308
  msgstr "Voltar a verificar"
1309
 
 
1310
  #@ broken-link-checker
1311
- #: includes/admin/table-printer.php:264
1312
  msgid "Fix redirects"
1313
  msgstr "Reparar redirects"
1314
 
 
1315
  #@ broken-link-checker
1316
- #: includes/admin/table-printer.php:265
1317
  msgid "Mark as not broken"
1318
  msgstr "Funcional"
1319
 
 
1320
  #@ broken-link-checker
1321
- #: includes/admin/table-printer.php:269
1322
  msgid "Move sources to Trash"
1323
  msgstr "Apagar fontes"
1324
 
 
1325
  #@ broken-link-checker
1326
- #: includes/admin/table-printer.php:271
1327
  msgid "Delete sources"
1328
  msgstr "Apagar fontes"
1329
 
 
1330
  #@ default
1331
- #: includes/admin/table-printer.php:286
1332
  msgid "&laquo;"
1333
  msgstr "&laquo;"
1334
 
 
1335
  #@ default
1336
- #: includes/admin/table-printer.php:287
1337
  msgid "&raquo;"
1338
  msgstr "&raquo;"
1339
 
1340
- #@ broken-link-checker
1341
- #: includes/admin/table-printer.php:295
1342
  #, php-format
 
1343
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1344
  msgstr "Mostrando %s&#8211;%s de <span class=\"current-link-count\">%s</span>"
1345
 
 
1346
  #@ default
1347
- #: includes/admin/table-printer.php:318
1348
  msgid "Bulk Edit URLs"
1349
  msgstr "Editar URLs em massa"
1350
 
 
1351
  #@ broken-link-checker
1352
- #: includes/admin/table-printer.php:320
1353
  msgid "Find"
1354
  msgstr "Procura"
1355
 
 
1356
  #@ broken-link-checker
1357
- #: includes/admin/table-printer.php:324
1358
  msgid "Replace with"
1359
  msgstr "Substituir com"
1360
 
 
1361
  #@ broken-link-checker
1362
- #: includes/admin/table-printer.php:332
1363
  msgid "Case sensitive"
1364
  msgstr "Coincidir maiúsculas/minúsculas"
1365
 
 
1366
  #@ broken-link-checker
1367
- #: includes/admin/table-printer.php:336
1368
  msgid "Regular expression"
1369
  msgstr "Expressão regular"
1370
 
 
1371
  #@ broken-link-checker
1372
- #: includes/admin/table-printer.php:344
1373
  msgid "Update"
1374
  msgstr "Atualizar"
1375
 
 
1376
  #@ broken-link-checker
1377
- #: includes/admin/table-printer.php:469
1378
  msgid "Post published on"
1379
- msgstr "Post publicado em"
1380
 
 
1381
  #@ broken-link-checker
1382
- #: includes/admin/table-printer.php:474
1383
  msgid "Link last checked"
1384
  msgstr "Última verificação"
1385
 
 
1386
  #@ broken-link-checker
1387
- #: includes/admin/table-printer.php:478
1388
  msgid "Never"
1389
  msgstr "Nunca"
1390
 
 
1391
  #@ broken-link-checker
1392
- #: includes/admin/table-printer.php:489
1393
  msgid "Response time"
1394
  msgstr "Tempo de resposta"
1395
 
1396
- #@ broken-link-checker
1397
- #: includes/admin/table-printer.php:491
1398
  #, php-format
 
1399
  msgid "%2.3f seconds"
1400
  msgstr "%2.3f segundos"
1401
 
 
1402
  #@ broken-link-checker
1403
- #: includes/admin/table-printer.php:494
1404
  msgid "Final URL"
1405
  msgstr "URL final"
1406
 
 
1407
  #@ broken-link-checker
1408
- #: includes/admin/table-printer.php:499
1409
  msgid "Redirect count"
1410
  msgstr "Contagem de redirects"
1411
 
 
1412
  #@ broken-link-checker
1413
- #: includes/admin/table-printer.php:504
1414
  msgid "Instance count"
1415
  msgstr "Contagem de casos"
1416
 
1417
- #@ broken-link-checker
1418
- #: includes/admin/table-printer.php:513
1419
  #, php-format
 
1420
  msgid "This link has failed %d time."
1421
  msgid_plural "This link has failed %d times."
1422
  msgstr[0] "Este link falhou %d vez."
1423
  msgstr[1] "Este link falhou %d vezes."
1424
 
1425
- #@ broken-link-checker
1426
- #: includes/admin/table-printer.php:521
1427
  #, php-format
 
1428
  msgid "This link has been broken for %s."
1429
  msgstr "Link offline durante %s."
1430
 
 
1431
  #@ broken-link-checker
1432
- #: includes/admin/table-printer.php:532
1433
  msgid "Log"
1434
- msgstr "Registro"
1435
 
 
1436
  #@ broken-link-checker
1437
- #: includes/admin/table-printer.php:553
1438
  msgid "Show more info about this link"
1439
  msgstr "Mostrar mais informação sobre este link"
1440
 
 
1441
  #@ broken-link-checker
1442
- #: includes/admin/table-printer.php:587
1443
  msgid "Broken for"
1444
  msgstr "Offline"
1445
 
 
1446
  #@ broken-link-checker
1447
- #: includes/admin/table-printer.php:607
1448
  msgid "Edit link URL"
1449
  msgstr "Editar URL do link"
1450
 
 
1451
  #@ broken-link-checker
1452
- #: includes/admin/table-printer.php:609
1453
  msgid "Remove this link from all posts"
1454
  msgstr "Eliminar este link"
1455
 
 
1456
  #@ broken-link-checker
1457
- #: includes/admin/table-printer.php:615
1458
  msgid "Remove this link from the list of broken links and mark it as valid"
1459
  msgstr "Eliminar este link da lista dos links offline e marcá-lo como válido"
1460
 
 
1461
  #@ broken-link-checker
1462
- #: includes/admin/table-printer.php:624
1463
  msgid "Cancel URL editing"
1464
  msgstr "Cancelar a edição do URL"
1465
 
 
1466
  #@ broken-link-checker
1467
- #: includes/admin/table-printer.php:631
1468
  msgid "Update URL"
1469
  msgstr "Atualizar URL"
1470
 
 
1471
  #@ broken-link-checker
1472
- #: includes/admin/table-printer.php:653
1473
  msgid "[An orphaned link! This is a bug.]"
1474
- msgstr "[Um link orfão! Bug.]"
1475
 
1476
- #@ broken-link-checker
1477
  #: modules/checkers/http.php:243
 
1478
  msgid "Server Not Found"
1479
  msgstr "Servidor Não Encontrado"
1480
 
1481
- #@ broken-link-checker
1482
  #: modules/checkers/http.php:258
 
1483
  msgid "Connection Failed"
1484
  msgstr "Sem Ligação"
1485
 
1486
- #@ broken-link-checker
1487
  #: modules/checkers/http.php:293
1488
  #: modules/checkers/http.php:363
1489
  #, php-format
 
1490
  msgid "HTTP code : %d"
1491
  msgstr "Código HTTP : %d"
1492
 
1493
- #@ broken-link-checker
1494
  #: modules/checkers/http.php:295
1495
  #: modules/checkers/http.php:365
 
1496
  msgid "(No response)"
1497
  msgstr "(Sem resposta)"
1498
 
1499
- #@ broken-link-checker
1500
  #: modules/checkers/http.php:301
 
1501
  msgid "Most likely the connection timed out or the domain doesn't exist."
1502
  msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
1503
 
1504
- #@ broken-link-checker
1505
  #: modules/checkers/http.php:372
 
1506
  msgid "Request timed out."
1507
  msgstr "Tempo de espera esgotado."
1508
 
1509
- #@ broken-link-checker
1510
  #: modules/checkers/http.php:390
 
1511
  msgid "Using Snoopy"
1512
  msgstr "Utilizando Snoopy"
1513
 
1514
- #@ broken-link-checker
1515
  #: modules/containers/blogroll.php:21
 
1516
  msgid "Bookmark"
1517
  msgstr "Favorito"
1518
 
1519
- #@ broken-link-checker
1520
  #: modules/containers/blogroll.php:27
1521
  #: modules/containers/blogroll.php:46
 
1522
  msgid "Edit this bookmark"
1523
  msgstr "Editar este favorito"
1524
 
1525
- #@ default
1526
  #: modules/containers/blogroll.php:47
1527
  #, php-format
 
1528
  msgid ""
1529
  "You are about to delete this link '%s'\n"
1530
  " 'Cancel' to stop, 'OK' to delete."
@@ -1532,553 +1537,593 @@ msgstr ""
1532
  "Está a ponto de apagar este link '%s'\n"
1533
  " 'Cancelar' para sair, 'Aceitar' para apagar."
1534
 
1535
- #@ broken-link-checker
1536
  #: modules/containers/blogroll.php:97
1537
  #, php-format
 
1538
  msgid "Updating bookmark %d failed"
1539
  msgstr "Atualização do favorito %d falhou"
1540
 
1541
- #@ broken-link-checker
1542
  #: modules/containers/blogroll.php:128
1543
  #, php-format
 
1544
  msgid "Failed to delete blogroll link \"%s\" (%d)"
1545
  msgstr "Não foi possível eliminar o link blogroll \"%s\" (%d)"
1546
 
1547
- #@ broken-link-checker
1548
  #: modules/containers/blogroll.php:299
1549
  #, php-format
 
1550
  msgid "%d blogroll link deleted."
1551
  msgid_plural "%d blogroll links deleted."
1552
  msgstr[0] "%d link blogroll apagado."
1553
  msgstr[1] "%d links blogroll apagados."
1554
 
1555
- #@ broken-link-checker
1556
  #: modules/containers/comment.php:53
1557
  #, php-format
 
1558
  msgid "Updating comment %d failed"
1559
  msgstr "Não foi possível atualizar o comentário %d"
1560
 
1561
- #@ broken-link-checker
1562
  #: modules/containers/comment.php:74
1563
  #, php-format
 
1564
  msgid "Failed to delete comment %d"
1565
  msgstr "Erro ao apagar o comentário %d"
1566
 
1567
- #@ broken-link-checker
1568
  #: modules/containers/comment.php:95
1569
  #, php-format
 
1570
  msgid "Can't move comment %d to the trash"
1571
  msgstr "Não pode mover o comentário %d para o lixo"
1572
 
1573
- #@ default
1574
  #: modules/containers/comment.php:160
 
1575
  msgid "Delete Permanently"
1576
  msgstr "Apagado definitivamente"
1577
 
1578
- #@ broken-link-checker
1579
  #: modules/containers/comment.php:166
 
1580
  msgid "View comment"
1581
  msgstr "Ver comentário"
1582
 
1583
- #@ broken-link-checker
1584
  #: modules/containers/comment.php:183
 
1585
  msgid "Comment"
1586
  msgstr "Comentário"
1587
 
1588
- #@ broken-link-checker
1589
  #: modules/containers/comment.php:356
1590
  #, php-format
 
1591
  msgid "%d comment has been deleted."
1592
  msgid_plural "%d comments have been deleted."
1593
  msgstr[0] "%d comentário foi apagado."
1594
  msgstr[1] "%d comentários foram apagados."
1595
 
1596
- #@ broken-link-checker
1597
  #: modules/containers/comment.php:375
1598
  #, php-format
 
1599
  msgid "%d comment moved to the Trash."
1600
  msgid_plural "%d comments moved to the Trash."
1601
  msgstr[0] "%d comentário apagado."
1602
  msgstr[1] "%d comentários apagados."
1603
 
1604
- #@ broken-link-checker
1605
  #: modules/containers/custom_field.php:84
1606
  #, php-format
 
1607
  msgid "Failed to update the meta field '%s' on %s [%d]"
1608
  msgstr "Falhou a atualização do campo meta '%s' em %s [%d]"
1609
 
1610
- #@ broken-link-checker
1611
  #: modules/containers/custom_field.php:110
1612
  #, php-format
 
1613
  msgid "Failed to delete the meta field '%s' on %s [%d]"
1614
  msgstr "Erro ao apagar o campo meta '%s' em %s [%d]"
1615
 
1616
- #@ default
1617
  #: modules/containers/custom_field.php:187
 
1618
  msgid "Edit this post"
1619
  msgstr "Editar post"
1620
 
1621
- #@ broken-link-checker
1622
  #: modules/containers/custom_field.php:217
1623
  #, php-format
 
1624
  msgid "View \"%s\""
1625
  msgstr "Ver \"%s\""
1626
 
1627
- #@ broken-link-checker
1628
  #: modules/containers/dummy.php:34
1629
  #: modules/containers/dummy.php:45
1630
  #, php-format
 
1631
  msgid "I don't know how to edit a '%s' [%d]."
1632
  msgstr "Não é possível editar '%s' [%d]."
1633
 
1634
- #@ broken-link-checker
1635
  #: modules/extras/dailymotion-embed.php:23
 
1636
  msgid "DailyMotion Video"
1637
  msgstr "Vídeo DailyMotion"
1638
 
1639
- #@ broken-link-checker
1640
  #: modules/extras/dailymotion-embed.php:24
 
1641
  msgid "Embedded DailyMotion video"
1642
  msgstr "Vídeo DailyMotion embutido"
1643
 
1644
- #@ broken-link-checker
1645
  #: modules/extras/embed-parser-base.php:196
 
1646
  msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
1647
  msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
1648
 
1649
- #@ broken-link-checker
1650
  #: modules/extras/fileserve.php:112
1651
  #: modules/extras/mediafire.php:91
1652
  #: modules/extras/mediafire.php:96
1653
  #: modules/extras/megaupload.php:81
1654
  #: modules/extras/megaupload.php:123
1655
  #: modules/extras/rapidshare.php:139
 
1656
  msgid "Not Found"
1657
  msgstr "Não Encontrado"
1658
 
1659
- #@ broken-link-checker
1660
  #: modules/extras/megaupload.php:130
 
1661
  msgid "File Temporarily Unavailable"
1662
  msgstr "Ficheiro Temporariamente Indisponível"
1663
 
1664
- #@ broken-link-checker
1665
  #: modules/extras/megaupload.php:136
 
1666
  msgid "API Error"
1667
  msgstr "Erro API"
1668
 
1669
- #@ broken-link-checker
1670
  #: modules/extras/rapidshare.php:158
 
1671
  msgid "RS Server Down"
1672
  msgstr "Servidor RS Desligado"
1673
 
1674
- #@ broken-link-checker
1675
  #: modules/extras/rapidshare.php:165
 
1676
  msgid "File Blocked"
1677
  msgstr "Ficheiro Bloqueado"
1678
 
1679
- #@ broken-link-checker
1680
  #: modules/extras/rapidshare.php:172
 
1681
  msgid "File Locked"
1682
  msgstr "Ficheiro Bloqueado"
1683
 
1684
- #@ broken-link-checker
1685
  #: modules/extras/rapidshare.php:183
1686
  #, php-format
 
1687
  msgid "RapidShare : %s"
1688
  msgstr "Rapidshare : %s"
1689
 
1690
- #@ broken-link-checker
1691
  #: modules/extras/rapidshare.php:189
1692
  #, php-format
 
1693
  msgid "RapidShare API error: %s"
1694
  msgstr "Rapidshare erro API: %s"
1695
 
1696
- #@ broken-link-checker
1697
  #: modules/extras/vimeo-embed.php:24
 
1698
  msgid "Vimeo Video"
1699
  msgstr "Vídeo Vimeo"
1700
 
1701
- #@ broken-link-checker
1702
  #: modules/extras/vimeo-embed.php:25
 
1703
  msgid "Embedded Vimeo video"
1704
  msgstr "Vídeo Vimeo embutido"
1705
 
1706
- #@ broken-link-checker
1707
  #: modules/extras/youtube-embed.php:24
1708
  #: modules/extras/youtube-iframe.php:25
 
1709
  msgid "YouTube Video"
1710
  msgstr "Vídeo YouTube"
1711
 
1712
- #@ broken-link-checker
1713
  #: modules/extras/youtube-embed.php:25
1714
  #: modules/extras/youtube-iframe.php:26
 
1715
  msgid "Embedded YouTube video"
1716
  msgstr "Vídeo YouTube embutido"
1717
 
1718
- #@ broken-link-checker
1719
  #: modules/extras/youtube.php:73
1720
  #: modules/extras/youtube.php:76
 
1721
  msgid "Video Not Found"
1722
  msgstr "Vídeo Não Encontrado"
1723
 
1724
- #@ broken-link-checker
1725
  #: modules/extras/youtube.php:84
 
1726
  msgid "Video Removed"
1727
  msgstr "Vídeo Apagado"
1728
 
1729
- #@ broken-link-checker
1730
  #: modules/extras/youtube.php:92
 
1731
  msgid "Invalid Video ID"
1732
  msgstr "Vídeo ID Inválido"
1733
 
1734
- #@ broken-link-checker
1735
  #: modules/extras/youtube.php:104
 
1736
  msgid "Video OK"
1737
  msgstr "Vídeo OK"
1738
 
1739
- #@ broken-link-checker
1740
  #: modules/extras/youtube.php:118
1741
  #, php-format
 
1742
  msgid "Video status : %s%s"
1743
  msgstr "Vídeo status : %s%s"
1744
 
1745
- #@ broken-link-checker
1746
  #: modules/extras/youtube.php:137
 
1747
  msgid "Video Restricted"
1748
  msgstr "Vídeo Restrito"
1749
 
1750
- #@ default
1751
  #: modules/extras/youtube.php:154
 
1752
  msgid "Unknown YouTube API response received."
1753
  msgstr "Resposta API YouTube desconhecida."
1754
 
1755
- #@ broken-link-checker
1756
  #: modules/parsers/image.php:159
 
1757
  msgid "Image"
1758
  msgstr "Imagem"
1759
 
1760
- #@ broken-link-checker
1761
  #: modules/parsers/metadata.php:117
 
1762
  msgid "Custom field"
1763
  msgstr "Campo personalizado"
1764
 
 
1765
  #@ broken-link-checker
1766
- #: core/core.php:683
1767
  msgid "Send authors e-mail notifications about broken links in their posts"
1768
  msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
1769
 
 
1770
  #@ broken-link-checker
1771
- #: core/core.php:2341
1772
  msgctxt "current load"
1773
  msgid "Unknown"
1774
  msgstr "Desconhecido"
1775
 
1776
- #@ broken-link-checker
1777
- #: core/core.php:2944
1778
  #, php-format
 
1779
  msgid "Broken Link Checker has detected %d new broken link in your posts."
1780
  msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
1781
  msgstr[0] "%d novo link offline encontrado nos seus artigos."
1782
  msgstr[1] "%d novos links offline encontrados nos seus artigos."
1783
 
 
1784
  #@ broken-link-checker
1785
- #: includes/admin/table-printer.php:571
1786
  msgctxt "checked how long ago"
1787
  msgid "Checked"
1788
  msgstr "Verificado"
1789
 
1790
- #@ broken-link-checker
1791
  #: includes/extra-strings.php:2
 
1792
  msgctxt "module name"
1793
  msgid "Basic HTTP"
1794
  msgstr "HTTP Básico"
1795
 
1796
- #@ broken-link-checker
1797
  #: includes/extra-strings.php:3
 
1798
  msgctxt "module name"
1799
  msgid "Blogroll items"
1800
  msgstr "Itens blogroll"
1801
 
1802
- #@ broken-link-checker
1803
  #: includes/extra-strings.php:4
 
1804
  msgctxt "module name"
1805
  msgid "Comments"
1806
  msgstr "Comentários"
1807
 
1808
- #@ broken-link-checker
1809
  #: includes/extra-strings.php:5
 
1810
  msgctxt "module name"
1811
  msgid "Custom fields"
1812
  msgstr "Campos personalizados"
1813
 
1814
- #@ broken-link-checker
1815
  #: includes/extra-strings.php:6
 
1816
  msgctxt "module name"
1817
  msgid "Embedded DailyMotion videos"
1818
  msgstr "Vídeos DailyMotion embutido"
1819
 
1820
- #@ broken-link-checker
1821
  #: includes/extra-strings.php:9
 
1822
  msgctxt "module name"
1823
  msgid "Embedded Vimeo videos"
1824
  msgstr "Vídeo Vimeo embutido"
1825
 
1826
- #@ broken-link-checker
1827
  #: includes/extra-strings.php:10
 
1828
  msgctxt "module name"
1829
  msgid "Embedded YouTube videos"
1830
  msgstr "Vídeos YouTube embutido"
1831
 
1832
- #@ broken-link-checker
1833
  #: includes/extra-strings.php:11
 
1834
  msgctxt "module name"
1835
  msgid "Embedded YouTube videos (old embed code)"
1836
  msgstr "Vídeos YouTube embutido (código antigo)"
1837
 
1838
- #@ broken-link-checker
1839
  #: includes/extra-strings.php:13
 
1840
  msgctxt "module name"
1841
  msgid "HTML images"
1842
  msgstr "Imagens HTML"
1843
 
1844
- #@ broken-link-checker
1845
  #: includes/extra-strings.php:14
 
1846
  msgctxt "module name"
1847
  msgid "HTML links"
1848
  msgstr "HTML links"
1849
 
1850
- #@ broken-link-checker
1851
  #: includes/extra-strings.php:15
 
1852
  msgctxt "module name"
1853
  msgid "MediaFire API"
1854
  msgstr "MediaFire API"
1855
 
1856
- #@ broken-link-checker
1857
  #: includes/extra-strings.php:16
 
1858
  msgctxt "module name"
1859
  msgid "MegaUpload API"
1860
  msgstr "MegaUpload API"
1861
 
1862
- #@ broken-link-checker
1863
  #: includes/extra-strings.php:17
 
1864
  msgctxt "module name"
1865
  msgid "Plaintext URLs"
1866
  msgstr "Texto URLs"
1867
 
1868
- #@ broken-link-checker
1869
  #: includes/extra-strings.php:18
 
1870
  msgctxt "module name"
1871
  msgid "RapidShare API"
1872
  msgstr "RapidShare API"
1873
 
1874
- #@ broken-link-checker
1875
  #: includes/extra-strings.php:19
 
1876
  msgctxt "module name"
1877
  msgid "YouTube API"
1878
  msgstr "YouTube API"
1879
 
1880
- #@ broken-link-checker
1881
  #: includes/extra-strings.php:20
 
1882
  msgctxt "module name"
1883
  msgid "Posts"
1884
  msgstr "Artigos"
1885
 
1886
- #@ broken-link-checker
1887
  #: includes/extra-strings.php:21
 
1888
  msgctxt "module name"
1889
  msgid "Pages"
1890
  msgstr "Páginas"
1891
 
 
1892
  #@ broken-link-checker
1893
- #: includes/links.php:831
1894
  msgctxt "link status"
1895
  msgid "Unknown"
1896
  msgstr "Desconhecido"
1897
 
1898
- #@ broken-link-checker
1899
- #: includes/links.php:875
1900
  #: modules/extras/fileserve.php:121
1901
  #: modules/extras/megaupload.php:115
1902
  #: modules/extras/rapidshare.php:145
1903
  #: modules/extras/rapidshare.php:151
1904
  #: modules/extras/rapidshare.php:178
 
1905
  msgctxt "link status"
1906
  msgid "OK"
1907
  msgstr "OK"
1908
 
1909
- #@ broken-link-checker
1910
  #: includes/module-manager.php:123
1911
  #: includes/module-manager.php:140
 
1912
  msgctxt "module name"
1913
  msgid "Name"
1914
  msgstr "Nome"
1915
 
1916
- #@ broken-link-checker
1917
- #: includes/utility-class.php:244
1918
  #, php-format
 
1919
  msgid "%d second"
1920
  msgid_plural "%d seconds"
1921
  msgstr[0] "%d segundo"
1922
  msgstr[1] "%d segundos"
1923
 
1924
- #@ broken-link-checker
1925
- #: includes/utility-class.php:245
1926
  #, php-format
 
1927
  msgid "%d second ago"
1928
  msgid_plural "%d seconds ago"
1929
  msgstr[0] "%d segundo atrás"
1930
  msgstr[1] "%d segundos atrás"
1931
 
1932
- #@ broken-link-checker
1933
- #: includes/utility-class.php:248
1934
  #, php-format
 
1935
  msgid "%d minute"
1936
  msgid_plural "%d minutes"
1937
  msgstr[0] "%d minuto"
1938
  msgstr[1] "%d minutos"
1939
 
1940
- #@ broken-link-checker
1941
- #: includes/utility-class.php:249
1942
  #, php-format
 
1943
  msgid "%d minute ago"
1944
  msgid_plural "%d minutes ago"
1945
  msgstr[0] "%d minuto atrás"
1946
  msgstr[1] "%d minutos atrás"
1947
 
1948
- #@ broken-link-checker
1949
- #: includes/utility-class.php:252
1950
  #, php-format
 
1951
  msgid "%d hour"
1952
  msgid_plural "%d hours"
1953
  msgstr[0] "%d hora"
1954
  msgstr[1] "%d horas"
1955
 
1956
- #@ broken-link-checker
1957
- #: includes/utility-class.php:253
1958
  #, php-format
 
1959
  msgid "%d hour ago"
1960
  msgid_plural "%d hours ago"
1961
  msgstr[0] "%d hora atrás"
1962
  msgstr[1] "%d horas atrás"
1963
 
1964
- #@ broken-link-checker
1965
- #: includes/utility-class.php:256
1966
  #, php-format
 
1967
  msgid "%d day"
1968
  msgid_plural "%d days"
1969
  msgstr[0] "%d dia"
1970
  msgstr[1] "%d dias"
1971
 
1972
- #@ broken-link-checker
1973
- #: includes/utility-class.php:257
1974
  #, php-format
 
1975
  msgid "%d day ago"
1976
  msgid_plural "%d days ago"
1977
  msgstr[0] "%d dia atrás"
1978
  msgstr[1] "%d dias atrás"
1979
 
1980
- #@ broken-link-checker
1981
- #: includes/utility-class.php:260
1982
  #, php-format
 
1983
  msgid "%d month"
1984
  msgid_plural "%d months"
1985
  msgstr[0] "%d mês"
1986
  msgstr[1] "%d meses"
1987
 
1988
- #@ broken-link-checker
1989
- #: includes/utility-class.php:261
1990
  #, php-format
 
1991
  msgid "%d month ago"
1992
  msgid_plural "%d months ago"
1993
  msgstr[0] "%d mês atrás"
1994
  msgstr[1] "%d meses atrás"
1995
 
1996
- #@ default
1997
  #: modules/containers/comment.php:153
1998
  #: modules/containers/comment.php:195
 
1999
  msgid "Edit comment"
2000
  msgstr "Editar comentário"
2001
 
2002
- #@ default
2003
  #: modules/containers/comment.php:162
 
2004
  msgid "Move this comment to the trash"
2005
  msgstr "Apagar comentário"
2006
 
2007
- #@ default
2008
  #: modules/containers/comment.php:162
 
2009
  msgctxt "verb"
2010
  msgid "Trash"
2011
  msgstr "Lixo"
2012
 
2013
- #@ broken-link-checker
2014
- #: core/core.php:715
2015
  #, php-format
 
2016
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
2017
- msgstr "Examplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
2018
 
 
 
2019
  #@ broken-link-checker
2020
- #: core/core.php:718
2021
- #: core/core.php:749
2022
  msgid "Click \"Save Changes\" to update example output."
2023
  msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
2024
 
2025
- #@ broken-link-checker
2026
- #: core/core.php:746
2027
  #, php-format
 
2028
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
2029
- msgstr "Examplo : Lorem ipsum <span %s> link removido</span>, dolor sit amet."
2030
 
2031
- #@ broken-link-checker
2032
  #: includes/extra-strings.php:7
 
2033
  msgctxt "module name"
2034
  msgid "Embedded GoogleVideo videos"
2035
  msgstr "Vídeos GoogleVideos embutido"
2036
 
2037
- #@ broken-link-checker
2038
  #: includes/extra-strings.php:8
 
2039
  msgctxt "module name"
2040
  msgid "Embedded Megavideo videos"
2041
  msgstr "Vídeos Megavideo embutido"
2042
 
2043
- #@ broken-link-checker
2044
  #: includes/extra-strings.php:12
 
2045
  msgctxt "module name"
2046
  msgid "FileServe API"
2047
  msgstr "FileServe API"
2048
 
2049
- #@ broken-link-checker
2050
  #: modules/extras/fileserve.php:55
 
2051
  msgid "Using FileServe API"
2052
  msgstr "Utilizar FileServe API"
2053
 
2054
- #@ broken-link-checker
2055
  #: modules/extras/fileserve.php:115
2056
  #, php-format
 
2057
  msgid "FileServe : %d %s"
2058
  msgstr "FileServe : %d %s"
2059
 
2060
- #@ broken-link-checker
2061
  #: modules/extras/googlevideo-embed.php:24
 
2062
  msgid "GoogleVideo Video"
2063
- msgstr "Video GoogleVideo"
2064
 
2065
- #@ broken-link-checker
2066
  #: modules/extras/googlevideo-embed.php:25
 
2067
  msgid "Embedded GoogleVideo video"
2068
- msgstr "Video GoogleVideo embutido"
2069
 
2070
- #@ broken-link-checker
2071
  #: modules/extras/megavideo-embed.php:24
 
2072
  msgid "Megavideo Video"
2073
- msgstr "Video Megavideo"
2074
 
2075
- #@ broken-link-checker
2076
  #: modules/extras/megavideo-embed.php:25
 
2077
  msgid "Embedded Megavideo video"
2078
- msgstr "Video Megavideo embutido"
2079
 
2080
- #@ broken-link-checker
2081
  #: modules/extras/rapidshare.php:51
 
2082
  msgid "Using RapidShare API"
2083
  msgstr "Utilizar RapidShare API"
2084
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker v1.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-11 10:00-0000\n"
6
+ "PO-Revision-Date: 2012-07-02 17:55:27+0000\n"
7
  "Last-Translator: \n"
8
+ "Language-Team: wordpress.mowster.net <wordpress@mowster.net>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Language: Portuguese\n"
14
  "X-Poedit-Country: PORTUGAL\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: ..\n"
18
+ "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
 
22
+ #: core/core.php:151
 
23
  #: includes/admin/links-page-js.php:37
24
+ #@ broken-link-checker
25
  msgid "Loading..."
26
  msgstr "Carregando..."
27
 
28
+ #: core/core.php:175
 
29
  #: includes/admin/options-page-js.php:18
30
+ #@ broken-link-checker
31
  msgid "[ Network error ]"
32
  msgstr "[ Problema na rede ]"
33
 
34
+ #: core/core.php:202
35
  #@ broken-link-checker
 
36
  msgid "Automatically expand the widget if broken links have been detected"
37
  msgstr "Expandir automaticamente a caixa se existirem links offline"
38
 
39
+ #: core/core.php:292
40
  #@ broken-link-checker
 
41
  msgid "Link Checker Settings"
42
  msgstr "Definições do Links offline"
43
 
44
+ #: core/core.php:293
45
  #@ broken-link-checker
 
46
  msgid "Link Checker"
47
  msgstr "Links offline"
48
 
49
+ #: core/core.php:298
50
+ #: includes/link-query.php:27
51
  #@ broken-link-checker
 
 
52
  msgid "Broken Links"
53
  msgstr "Links offline"
54
 
55
+ #: core/core.php:314
56
  #@ broken-link-checker
 
57
  msgid "View Broken Links"
58
  msgstr "Ver Links offline"
59
 
60
+ #: core/core.php:329
61
  #@ broken-link-checker
 
62
  msgid "Feedback"
63
  msgstr "Feedback"
64
 
65
+ #: core/core.php:368
66
  #@ broken-link-checker
 
67
  msgid "Go to Broken Links"
68
  msgstr "Ir a Links offline"
69
 
70
+ #: core/core.php:397
71
  #@ default
 
72
  msgid "Settings"
73
  msgstr "Definições"
74
 
75
+ #: core/core.php:409
76
+ #: core/core.php:1212
 
77
  #, php-format
78
+ #@ broken-link-checker
79
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
80
  msgstr "Erro: As tabelas do plugin na Base de dados não estão atualizadas! (Versão atual : %d, obrigatória : %d)"
81
 
82
+ #: core/core.php:413
83
+ #: core/core.php:1216
84
  #@ broken-link-checker
 
 
85
  msgid "Try deactivating and then reactivating the plugin."
86
  msgstr "Tente desativar e ativar o plugin."
87
 
88
+ #: core/core.php:564
89
  #@ broken-link-checker
 
90
  msgid "Settings saved."
91
  msgstr "Definições guardadas."
92
 
93
+ #: core/core.php:570
94
  #@ broken-link-checker
 
95
  msgid "Thank you for your donation!"
96
  msgstr "Obrigado pela sua colaboração!"
97
 
98
+ #: core/core.php:578
99
  #@ broken-link-checker
 
100
  msgid "Complete site recheck started."
101
+ msgstr "Reverificação completa do sítio iniciada."
102
 
103
+ #: core/core.php:587
104
  #@ broken-link-checker
 
105
  msgid "Details"
106
  msgstr "Detalhes"
107
 
108
+ #: core/core.php:601
109
  #@ broken-link-checker
 
110
  msgid "General"
111
  msgstr "Geral"
112
 
113
+ #: core/core.php:602
114
  #@ broken-link-checker
 
115
  msgid "Look For Links In"
116
  msgstr "Procurar links"
117
 
118
+ #: core/core.php:603
119
  #@ broken-link-checker
 
120
  msgid "Which Links To Check"
121
  msgstr "Links para verificar"
122
 
123
+ #: core/core.php:604
124
  #@ broken-link-checker
 
125
  msgid "Protocols & APIs"
126
  msgstr "Protocolos & APIs"
127
 
128
+ #: core/core.php:605
129
  #@ broken-link-checker
 
130
  msgid "Advanced"
131
  msgstr "Avançado"
132
 
133
+ #: core/core.php:620
134
  #@ broken-link-checker
 
135
  msgid "Broken Link Checker Options"
136
  msgstr "Opções : Links offline"
137
 
138
+ #: core/core.php:662
139
+ #: includes/admin/table-printer.php:197
140
  #@ broken-link-checker
 
 
141
  msgid "Status"
142
  msgstr "Estado"
143
 
144
+ #: core/core.php:664
 
145
  #: includes/admin/options-page-js.php:56
146
+ #@ broken-link-checker
147
  msgid "Show debug info"
148
  msgstr "Mostrar sistema"
149
 
150
+ #: core/core.php:692
151
  #@ broken-link-checker
 
152
  msgid "Check each link"
153
  msgstr "Verificar cada link"
154
 
155
+ #: core/core.php:697
 
156
  #, php-format
157
+ #@ broken-link-checker
158
  msgid "Every %s hours"
159
  msgstr "Cada %s horas"
160
 
161
+ #: core/core.php:706
162
  #@ broken-link-checker
 
163
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
164
  msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
165
 
166
+ #: core/core.php:713
167
  #@ broken-link-checker
 
168
  msgid "E-mail notifications"
169
  msgstr "Notificações por e-mail"
170
 
171
+ #: core/core.php:719
172
  #@ broken-link-checker
 
173
  msgid "Send me e-mail notifications about newly detected broken links"
174
  msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
175
 
176
+ #: core/core.php:734
177
  #@ broken-link-checker
 
178
  msgid "Link tweaks"
179
  msgstr "Melhoria de Links"
180
 
181
+ #: core/core.php:740
182
  #@ broken-link-checker
 
183
  msgid "Apply custom formatting to broken links"
184
  msgstr "Aplicar formatação personalizada para os links offline"
185
 
186
+ #: core/core.php:744
187
+ #: core/core.php:775
188
  #@ broken-link-checker
 
 
189
  msgid "Edit CSS"
190
  msgstr "Editar CSS"
191
 
192
+ #: core/core.php:771
193
  #@ broken-link-checker
 
194
  msgid "Apply custom formatting to removed links"
195
  msgstr "Aplicar formatação personalizada para os links removidos"
196
 
197
+ #: core/core.php:804
198
  #@ broken-link-checker
 
199
  msgid "Stop search engines from following broken links"
200
  msgstr "Não permitir aos motores de busca seguir os links offline"
201
 
202
+ #: core/core.php:821
203
  #@ broken-link-checker
 
204
  msgid "Look for links in"
205
  msgstr "Procurar links em"
206
 
207
+ #: core/core.php:832
208
  #@ broken-link-checker
 
209
  msgid "Post statuses"
210
  msgstr "Estado do Artigo"
211
 
212
+ #: core/core.php:865
213
  #@ broken-link-checker
 
214
  msgid "Link types"
215
  msgstr "Tipos de link"
216
 
217
+ #: core/core.php:871
218
  #@ broken-link-checker
 
219
  msgid "Error : All link parsers missing!"
220
  msgstr "Erro : Análises aos links não encontradas!"
221
 
222
+ #: core/core.php:878
223
  #@ broken-link-checker
 
224
  msgid "Exclusion list"
225
  msgstr "Lista de exclusão"
226
 
227
+ #: core/core.php:879
228
  #@ broken-link-checker
 
229
  msgid "Don't check links where the URL contains any of these words (one per line) :"
230
  msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
231
 
232
+ #: core/core.php:897
233
  #@ broken-link-checker
 
234
  msgid "Check links using"
235
  msgstr "Verificar links utilizando"
236
 
237
+ #: core/core.php:916
238
+ #: includes/links.php:856
239
  #@ broken-link-checker
 
 
240
  msgid "Timeout"
241
  msgstr "Intervalo"
242
 
243
+ #: core/core.php:922
244
+ #: core/core.php:968
245
+ #: core/core.php:2816
246
+ #, php-format
247
  #@ broken-link-checker
248
  #@ default
 
 
 
 
249
  msgid "%s seconds"
250
  msgstr "%s segundos"
251
 
252
+ #: core/core.php:931
253
  #@ broken-link-checker
 
254
  msgid "Links that take longer than this to load will be marked as broken."
255
  msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
256
 
257
+ #: core/core.php:938
258
  #@ broken-link-checker
 
259
  msgid "Link monitor"
260
  msgstr "Monitor de links"
261
 
262
+ #: core/core.php:946
263
  #@ broken-link-checker
 
264
  msgid "Run continuously while the Dashboard is open"
265
  msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
266
 
267
+ #: core/core.php:954
268
  #@ broken-link-checker
 
269
  msgid "Run hourly in the background"
270
  msgstr "Executar a cada hora em segundo plano"
271
 
272
+ #: core/core.php:962
273
  #@ broken-link-checker
 
274
  msgid "Max. execution time"
275
  msgstr "Tempo máximo de execução"
276
 
277
+ #: core/core.php:979
278
  #@ broken-link-checker
 
279
  msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
280
+ msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analisa os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
281
 
282
+ #: core/core.php:988
283
  #@ broken-link-checker
 
284
  msgid "Server load limit"
285
  msgstr "Limite de carregamento do servidor"
286
 
287
+ #: core/core.php:1003
 
288
  #, php-format
289
+ #@ broken-link-checker
290
  msgid "Current load : %s"
291
+ msgstr "Carga atual : %s"
292
 
293
+ #: core/core.php:1009
 
294
  #, php-format
295
+ #@ broken-link-checker
296
  msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
297
  msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
298
 
299
+ #: core/core.php:1017
300
  #@ broken-link-checker
 
301
  msgid "Not available"
302
  msgstr "Não disponível"
303
 
304
+ #: core/core.php:1019
305
  #@ broken-link-checker
 
306
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
307
  msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
308
 
309
+ #: core/core.php:1027
310
  #@ broken-link-checker
 
311
  msgid "Forced recheck"
312
+ msgstr "Reverificação forçada"
313
 
314
+ #: core/core.php:1030
315
  #@ broken-link-checker
 
316
  msgid "Re-check all pages"
317
  msgstr "Verificar de novo todas as páginas"
318
 
319
+ #: core/core.php:1034
320
  #@ broken-link-checker
 
321
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
322
+ msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados e reverificar todo o sítio desde o início."
323
 
324
+ #: core/core.php:1045
325
  #@ default
 
326
  msgid "Save Changes"
327
  msgstr "Guardar alterações"
328
 
329
+ #: core/core.php:1096
330
  #@ broken-link-checker
 
331
  msgid "Configure"
332
  msgstr "Configurar"
333
 
334
+ #: core/core.php:1178
335
  #@ broken-link-checker
 
336
  msgid "Check URLs entered in these custom fields (one per line) :"
337
  msgstr "Verificar URLs nos campos personalizados (um por linha):"
338
 
339
+ #: core/core.php:1316
340
+ #: core/core.php:1398
341
+ #: core/core.php:1430
 
342
  #, php-format
343
+ #@ broken-link-checker
344
  msgid "Database error : %s"
345
  msgstr "Erro na Base de dados: %s"
346
 
347
+ #: core/core.php:1380
348
  #@ broken-link-checker
 
349
  msgid "You must enter a filter name!"
350
  msgstr "Deve introduzir um nome para o filtro!"
351
 
352
+ #: core/core.php:1384
353
  #@ broken-link-checker
 
354
  msgid "Invalid search query."
355
  msgstr "Procura inválida."
356
 
357
+ #: core/core.php:1393
 
358
  #, php-format
359
+ #@ broken-link-checker
360
  msgid "Filter \"%s\" created"
361
  msgstr "Filtro \"%s\" criado"
362
 
363
+ #: core/core.php:1420
364
  #@ broken-link-checker
 
365
  msgid "Filter ID not specified."
366
  msgstr "ID do Filtro não especificado."
367
 
368
+ #: core/core.php:1427
369
  #@ broken-link-checker
 
370
  msgid "Filter deleted"
371
  msgstr "Filtro eliminado"
372
 
373
+ #: core/core.php:1475
 
374
  #, php-format
375
+ #@ broken-link-checker
376
  msgid "Replaced %d redirect with a direct link"
377
  msgid_plural "Replaced %d redirects with direct links"
378
  msgstr[0] "Substituído %d redirect com link direto"
379
  msgstr[1] "Substituídos %d redirects com links diretos"
380
 
381
+ #: core/core.php:1486
 
382
  #, php-format
383
+ #@ broken-link-checker
384
  msgid "Failed to fix %d redirect"
385
  msgid_plural "Failed to fix %d redirects"
386
  msgstr[0] "Não foi possível reparar %d redirect"
387
  msgstr[1] "Não foi possível reparar %d redirects"
388
 
389
+ #: core/core.php:1496
390
  #@ broken-link-checker
 
391
  msgid "None of the selected links are redirects!"
392
  msgstr "Nenhum dos links selecionados são redirects!"
393
 
394
+ #: core/core.php:1575
 
395
  #, php-format
396
+ #@ broken-link-checker
397
  msgid "%d link updated."
398
  msgid_plural "%d links updated."
399
  msgstr[0] "%d link atualizado."
400
  msgstr[1] "%d links atualizados."
401
 
402
+ #: core/core.php:1586
 
403
  #, php-format
404
+ #@ broken-link-checker
405
  msgid "Failed to update %d link."
406
  msgid_plural "Failed to update %d links."
407
  msgstr[0] "Erro a atualizar %d link."
408
  msgstr[1] "Erro a atualizar %d links."
409
 
410
+ #: core/core.php:1640
 
411
  #, php-format
412
+ #@ broken-link-checker
413
  msgid "%d link removed"
414
  msgid_plural "%d links removed"
415
  msgstr[0] "%d link eliminado"
416
  msgstr[1] "%d links eliminados"
417
 
418
+ #: core/core.php:1651
 
419
  #, php-format
420
+ #@ broken-link-checker
421
  msgid "Failed to remove %d link"
422
  msgid_plural "Failed to remove %d links"
423
  msgstr[0] "Erro a remover %d link"
424
  msgstr[1] "Erro a remover %d links"
425
 
426
+ #: core/core.php:1760
 
427
  #, php-format
428
+ #@ default
429
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
430
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
431
  msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
432
  msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
433
 
434
+ #: core/core.php:1781
435
  #@ broken-link-checker
 
436
  msgid "Didn't find anything to delete!"
437
  msgstr "Não foi encontrado nada para apagar!"
438
 
439
+ #: core/core.php:1810
 
440
  #, php-format
441
+ #@ broken-link-checker
442
  msgid "%d link scheduled for rechecking"
443
  msgid_plural "%d links scheduled for rechecking"
444
  msgstr[0] "%d link agendado para verificação"
445
  msgstr[1] "%d links agendados para verificação"
446
 
447
+ #: core/core.php:1855
448
+ #: core/core.php:2459
449
  #@ broken-link-checker
 
 
450
  msgid "This link was manually marked as working by the user."
451
  msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
452
 
453
+ #: core/core.php:1862
 
454
  #, php-format
455
+ #@ broken-link-checker
456
  msgid "Couldn't modify link %d"
457
  msgstr "Impossível modificar o link %d"
458
 
459
+ #: core/core.php:1873
 
460
  #, php-format
461
+ #@ broken-link-checker
462
  msgid "%d link marked as not broken"
463
  msgid_plural "%d links marked as not broken"
464
  msgstr[0] "%d link marcado como funcional"
465
  msgstr[1] "%d links marcados como funcionais"
466
 
467
+ #: core/core.php:1912
468
  #@ broken-link-checker
 
469
  msgid "Table columns"
470
  msgstr "Colunas da Tabela"
471
 
472
+ #: core/core.php:1931
473
  #@ default
 
474
  msgid "Show on screen"
475
  msgstr "Mostrar no ecrán"
476
 
477
+ #: core/core.php:1938
478
  #@ broken-link-checker
 
479
  msgid "links"
480
  msgstr "links"
481
 
482
+ #: core/core.php:1939
483
+ #: includes/admin/table-printer.php:165
484
  #@ default
485
  #@ broken-link-checker
 
 
486
  msgid "Apply"
487
  msgstr "Aplicar"
488
 
489
+ #: core/core.php:1943
490
  #@ broken-link-checker
 
491
  msgid "Misc"
492
  msgstr "Vários"
493
 
494
+ #: core/core.php:1958
 
495
  #, php-format
496
+ #@ broken-link-checker
497
  msgid "Highlight links broken for at least %s days"
498
  msgstr "Realçar links offline pelo menos durante %s dias"
499
 
500
+ #: core/core.php:1967
501
  #@ broken-link-checker
 
502
  msgid "Color-code status codes"
503
  msgstr "Cor-código status códigos"
504
 
505
+ #: core/core.php:1984
506
+ #: core/core.php:2444
507
+ #: core/core.php:2484
508
+ #: core/core.php:2517
509
+ #: core/core.php:2580
510
  #@ broken-link-checker
 
 
 
 
511
  msgid "You're not allowed to do that!"
512
  msgstr "Não permitido!"
513
 
514
+ #: core/core.php:2325
515
  #@ broken-link-checker
 
516
  msgid "View broken links"
517
  msgstr "Ver links offline"
518
 
519
+ #: core/core.php:2326
 
520
  #, php-format
521
+ #@ broken-link-checker
522
  msgid "Found %d broken link"
523
  msgid_plural "Found %d broken links"
524
  msgstr[0] "Encontrado %d Link offline"
525
  msgstr[1] "Encontrados %d Links offline"
526
 
527
+ #: core/core.php:2332
528
  #@ broken-link-checker
 
529
  msgid "No broken links found."
530
  msgstr "Não existem links offline."
531
 
532
+ #: core/core.php:2339
 
533
  #, php-format
534
+ #@ broken-link-checker
535
  msgid "%d URL in the work queue"
536
  msgid_plural "%d URLs in the work queue"
537
  msgstr[0] "%d URL em espera"
538
  msgstr[1] "%d URLs em espera"
539
 
540
+ #: core/core.php:2342
541
  #@ broken-link-checker
 
542
  msgid "No URLs in the work queue."
543
  msgstr "Não existem URL em espera para verificação."
544
 
545
+ #: core/core.php:2348
 
546
  #, php-format
547
+ #@ broken-link-checker
548
  msgid "Detected %d unique URL"
549
  msgid_plural "Detected %d unique URLs"
550
  msgstr[0] "Encontrada %d URL única"
551
  msgstr[1] "Encontradas %d URL únicas"
552
 
553
+ #: core/core.php:2349
 
554
  #, php-format
555
+ #@ broken-link-checker
556
  msgid "in %d link"
557
  msgid_plural "in %d links"
558
  msgstr[0] "em %d link"
559
  msgstr[1] "em %d links"
560
 
561
+ #: core/core.php:2354
562
  #@ broken-link-checker
 
563
  msgid "and still searching..."
564
  msgstr "e procurando..."
565
 
566
+ #: core/core.php:2360
567
  #@ broken-link-checker
 
568
  msgid "Searching your blog for links..."
569
  msgstr "Procurando links..."
570
 
571
+ #: core/core.php:2362
572
  #@ broken-link-checker
 
573
  msgid "No links detected."
574
  msgstr "Nenhuns links encontrados."
575
 
576
+ #: core/core.php:2452
577
+ #: core/core.php:2492
578
+ #: core/core.php:2527
579
+ #: core/core.php:2590
580
  #, php-format
581
+ #@ broken-link-checker
582
  msgid "Oops, I can't find the link %d"
583
  msgstr "Oops, não é possível encontrar o link %d"
584
 
585
+ #: core/core.php:2465
586
+ #: core/core.php:2502
587
  #@ broken-link-checker
 
588
  msgid "Oops, couldn't modify the link!"
589
  msgstr "Oops, não é possível modificar o link!"
590
 
591
+ #: core/core.php:2468
592
+ #: core/core.php:2505
593
+ #: core/core.php:2616
594
  #@ broken-link-checker
 
 
595
  msgid "Error : link_id not specified"
596
  msgstr "Erro : link_id não especificado"
597
 
598
+ #: core/core.php:2537
599
  #@ broken-link-checker
 
600
  msgid "Oops, the new URL is invalid!"
601
  msgstr "Oops, a nova URL não é válida!"
602
 
603
+ #: core/core.php:2548
604
+ #: core/core.php:2599
605
  #@ broken-link-checker
 
 
606
  msgid "An unexpected error occured!"
607
  msgstr "Ocorreu um erro inesperado!"
608
 
609
+ #: core/core.php:2566
610
  #@ broken-link-checker
 
611
  msgid "Error : link_id or new_url not specified"
612
  msgstr "Erro : link_id ou new_url não especificado"
613
 
614
+ #: core/core.php:2625
615
  #@ broken-link-checker
 
616
  msgid "You don't have sufficient privileges to access this information!"
617
+ msgstr "Não tem privilégios suficientes para aceder a esta informação!"
618
 
619
+ #: core/core.php:2638
620
  #@ broken-link-checker
 
621
  msgid "Error : link ID not specified"
622
  msgstr "Erro : link ID não especificado"
623
 
624
+ #: core/core.php:2652
 
625
  #, php-format
626
+ #@ broken-link-checker
627
  msgid "Failed to load link details (%s)"
628
  msgstr "Erro a carregar os detalhes do link (%s)"
629
 
630
+ #: core/core.php:2705
631
  #@ broken-link-checker
 
632
  msgid "Broken Link Checker"
633
  msgstr "Links offline"
634
 
635
+ #: core/core.php:2725
636
  #@ broken-link-checker
 
637
  msgid "PHP version"
638
  msgstr "Versão PHP"
639
 
640
+ #: core/core.php:2731
641
  #@ broken-link-checker
 
642
  msgid "MySQL version"
643
  msgstr "Versão MySQL"
644
 
645
+ #: core/core.php:2744
646
  #@ broken-link-checker
 
647
  msgid "You have an old version of CURL. Redirect detection may not work properly."
648
  msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
649
 
650
+ #: core/core.php:2756
651
+ #: core/core.php:2772
652
+ #: core/core.php:2777
653
  #@ broken-link-checker
 
 
 
654
  msgid "Not installed"
655
  msgstr "Não instalado"
656
 
657
+ #: core/core.php:2759
658
  #@ broken-link-checker
 
659
  msgid "CURL version"
660
  msgstr "Versão CURL"
661
 
662
+ #: core/core.php:2765
663
  #@ broken-link-checker
 
664
  msgid "Installed"
665
  msgstr "Instalado"
666
 
667
+ #: core/core.php:2778
668
  #@ broken-link-checker
 
669
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
670
  msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
671
 
672
+ #: core/core.php:2789
673
  #@ broken-link-checker
 
674
  msgid "On"
675
  msgstr "Ativado"
676
 
677
+ #: core/core.php:2790
678
  #@ broken-link-checker
 
679
  msgid "Redirects may be detected as broken links when safe_mode is on."
680
+ msgstr "Os redirects podem ser detetados como links offline quando o safe_mode está habilitado."
681
 
682
+ #: core/core.php:2795
683
+ #: core/core.php:2809
684
  #@ broken-link-checker
 
 
685
  msgid "Off"
686
  msgstr "Desativado"
687
 
688
+ #: core/core.php:2803
 
689
  #, php-format
690
+ #@ broken-link-checker
691
  msgid "On ( %s )"
692
  msgstr "Ativado ( %s )"
693
 
694
+ #: core/core.php:2804
695
  #@ broken-link-checker
 
696
  msgid "Redirects may be detected as broken links when open_basedir is on."
697
  msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
698
 
699
+ #: core/core.php:2833
700
  #@ broken-link-checker
 
701
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
702
  msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
703
 
704
+ #: core/core.php:2924
705
+ #: core/core.php:3022
 
706
  #, php-format
707
+ #@ broken-link-checker
708
  msgid "[%s] Broken links detected"
709
  msgstr "[%s] Links offline encontrados"
710
 
711
+ #: core/core.php:2930
 
712
  #, php-format
713
+ #@ broken-link-checker
714
  msgid "Broken Link Checker has detected %d new broken link on your site."
715
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
716
  msgstr[0] "Links offline detetou %d novo link sem ligação."
717
  msgstr[1] "Links offline detetou %d novos links sem ligação."
718
 
719
+ #: core/core.php:2953
 
720
  #, php-format
721
+ #@ broken-link-checker
722
  msgid "Here's a list of the first %d broken links:"
723
  msgid_plural "Here's a list of the first %d broken links:"
724
  msgstr[0] "Lista do primeiro %d link sem ligação:"
725
  msgstr[1] "Lista dos primeiros %d links sem ligação:"
726
 
727
+ #: core/core.php:2961
728
  #@ broken-link-checker
 
729
  msgid "Here's a list of the new broken links: "
730
  msgstr "Novos links offline:"
731
 
732
+ #: core/core.php:2970
 
733
  #, php-format
734
+ #@ broken-link-checker
735
  msgid "Link text : %s"
736
  msgstr "Texto do Link : %s"
737
 
738
+ #: core/core.php:2971
 
739
  #, php-format
740
+ #@ broken-link-checker
741
  msgid "Link URL : <a href=\"%s\">%s</a>"
742
  msgstr "Link URL : <a href=\"%s\">%s</a>"
743
 
744
+ #: core/core.php:2972
 
745
  #, php-format
746
+ #@ broken-link-checker
747
  msgid "Source : %s"
748
  msgstr "Fonte : %s"
749
 
750
+ #: core/core.php:2985
751
  #@ broken-link-checker
 
752
  msgid "You can see all broken links here:"
753
  msgstr "Links offline:"
754
 
755
+ #: core/init.php:235
756
  #@ default
 
757
  msgid "Once Weekly"
758
  msgstr "Uma vez por semana"
759
 
760
+ #: core/init.php:241
761
  #@ default
 
762
  msgid "Twice a Month"
763
  msgstr "Bi-Mensal"
764
 
765
+ #: core/init.php:311
766
  #@ broken-link-checker
 
767
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
768
  msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
769
 
 
770
  #: includes/any-post.php:397
771
  #: modules/containers/blogroll.php:46
772
  #: modules/containers/comment.php:153
773
  #: modules/containers/custom_field.php:197
774
+ #@ default
775
  msgid "Edit"
776
  msgstr "Editar"
777
 
 
778
  #: includes/any-post.php:405
779
  #: modules/containers/custom_field.php:203
780
+ #@ default
781
  msgid "Move this item to the Trash"
782
  msgstr "Apagar este item"
783
 
 
784
  #: includes/any-post.php:407
785
  #: modules/containers/custom_field.php:205
786
+ #@ default
787
  msgid "Trash"
788
  msgstr "Lixo"
789
 
 
790
  #: includes/any-post.php:412
791
  #: modules/containers/custom_field.php:210
792
+ #@ default
793
  msgid "Delete this item permanently"
794
  msgstr "Apagar este item definitivamente"
795
 
 
796
  #: includes/any-post.php:414
797
  #: modules/containers/blogroll.php:47
798
  #: modules/containers/custom_field.php:212
799
+ #@ default
800
  msgid "Delete"
801
  msgstr "Apagar"
802
 
 
803
  #: includes/any-post.php:427
804
  #, php-format
805
+ #@ default
806
  msgid "Preview &#8220;%s&#8221;"
807
  msgstr "Pré-vizualizar &#8220;%s&#8221;"
808
 
 
809
  #: includes/any-post.php:428
810
+ #@ default
811
  msgid "Preview"
812
  msgstr "Pré-visualizar"
813
 
 
814
  #: includes/any-post.php:435
815
  #, php-format
816
+ #@ default
817
  msgid "View &#8220;%s&#8221;"
818
  msgstr "Visualizar &#8220;%s&#8221;"
819
 
 
820
  #: includes/any-post.php:436
821
  #: modules/containers/comment.php:166
822
  #: modules/containers/custom_field.php:217
823
+ #@ default
824
  msgid "View"
825
  msgstr "Ver"
826
 
 
827
  #: includes/any-post.php:455
828
  #: modules/containers/custom_field.php:197
829
+ #@ default
830
  msgid "Edit this item"
831
  msgstr "Editar este item"
832
 
 
833
  #: includes/any-post.php:519
834
  #: modules/containers/blogroll.php:83
835
  #: modules/containers/comment.php:43
836
+ #@ broken-link-checker
837
  msgid "Nothing to update"
838
  msgstr "Sem atualização"
839
 
 
840
  #: includes/any-post.php:529
841
  #, php-format
842
+ #@ broken-link-checker
843
  msgid "Updating post %d failed"
844
  msgstr "Atualização do artigo %d falhou"
845
 
 
846
  #: includes/any-post.php:564
847
  #: modules/containers/custom_field.php:284
848
  #, php-format
849
+ #@ broken-link-checker
850
  msgid "Failed to delete post \"%s\" (%d)"
851
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
852
 
 
853
  #: includes/any-post.php:583
854
  #: modules/containers/custom_field.php:303
855
  #, php-format
856
+ #@ broken-link-checker
857
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
858
  msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
859
 
 
860
  #: includes/any-post.php:603
861
  #: modules/containers/custom_field.php:322
862
  #, php-format
863
+ #@ broken-link-checker
864
  msgid "Failed to move post \"%s\" (%d) to the trash"
865
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
866
 
 
867
  #: includes/any-post.php:711
868
  #, php-format
869
+ #@ broken-link-checker
870
  msgid "%d post deleted."
871
  msgid_plural "%d posts deleted."
872
  msgstr[0] "%d artigo apagado."
873
  msgstr[1] "%d artigos apagados."
874
 
 
875
  #: includes/any-post.php:713
876
  #, php-format
877
+ #@ broken-link-checker
878
  msgid "%d page deleted."
879
  msgid_plural "%d pages deleted."
880
  msgstr[0] "%d página apagada."
881
  msgstr[1] "%d páginas apagadas."
882
 
 
883
  #: includes/any-post.php:715
884
  #, php-format
885
+ #@ broken-link-checker
886
  msgid "%d \"%s\" deleted."
887
  msgid_plural "%d \"%s\" deleted."
888
  msgstr[0] "%d \"%s\" apagado."
889
  msgstr[1] "%d \"%s\" apagados."
890
 
 
891
  #: includes/any-post.php:734
892
  #, php-format
893
+ #@ broken-link-checker
894
  msgid "%d post moved to the Trash."
895
  msgid_plural "%d posts moved to the Trash."
896
  msgstr[0] "%d artigo transferido para o Lixo."
897
  msgstr[1] "%d artigos transferidos para o Lixo."
898
 
 
899
  #: includes/any-post.php:736
900
  #, php-format
901
+ #@ broken-link-checker
902
  msgid "%d page moved to the Trash."
903
  msgid_plural "%d pages moved to the Trash."
904
  msgstr[0] "%d página transferida para o Lixo."
905
  msgstr[1] "%d páginas transferidas para o Lixo."
906
 
 
907
  #: includes/any-post.php:738
908
  #, php-format
909
+ #@ broken-link-checker
910
  msgid "%d \"%s\" moved to the Trash."
911
  msgid_plural "%d \"%s\" moved to the Trash."
912
  msgstr[0] "%d \"%s\" transferido para o Lixo."
913
  msgstr[1] "%d \"%s\" transferidos para o Lixo."
914
 
 
915
  #: includes/containers.php:123
916
  #, php-format
917
+ #@ broken-link-checker
918
  msgid "%d '%s' has been deleted"
919
  msgid_plural "%d '%s' have been deleted"
920
  msgstr[0] "%d '%s' foi apagado"
921
  msgstr[1] "%d '%s' foram apagados"
922
 
 
923
  #: includes/containers.php:873
924
  #: includes/containers.php:891
925
  #, php-format
926
+ #@ broken-link-checker
927
  msgid "Container type '%s' not recognized"
928
  msgstr "Recipiente tipo '%s' não foi reconhecido"
929
 
 
930
  #: includes/instances.php:102
931
  #: includes/instances.php:158
932
  #, php-format
933
+ #@ broken-link-checker
934
  msgid "Container %s[%d] not found"
935
  msgstr "Recipiente %s[%d] não encontrado"
936
 
 
937
  #: includes/instances.php:111
938
  #: includes/instances.php:167
939
  #, php-format
940
+ #@ broken-link-checker
941
  msgid "Parser '%s' not found."
942
+ msgstr "Analisador sintático '%s' não encontrado."
943
 
944
+ #: includes/link-query.php:26
945
  #@ broken-link-checker
 
946
  msgid "Broken"
947
  msgstr "Offline"
948
 
949
+ #: includes/link-query.php:28
950
  #@ broken-link-checker
 
951
  msgid "No broken links found"
952
  msgstr "Links offline (0)"
953
 
954
+ #: includes/link-query.php:36
955
  #@ broken-link-checker
 
956
  msgid "Redirects"
957
  msgstr "Redirects"
958
 
959
+ #: includes/link-query.php:37
960
  #@ broken-link-checker
 
961
  msgid "Redirected Links"
962
  msgstr "Links Redirects"
963
 
964
+ #: includes/link-query.php:38
965
  #@ broken-link-checker
 
966
  msgid "No redirects found"
967
  msgstr "Redirects (0)"
968
 
969
+ #: includes/link-query.php:56
970
  #@ broken-link-checker
 
971
  msgid "All"
972
  msgstr "Todos"
973
 
974
+ #: includes/link-query.php:57
975
  #@ broken-link-checker
 
976
  msgid "Detected Links"
977
  msgstr "Links encontrados"
978
 
979
+ #: includes/link-query.php:58
980
  #@ broken-link-checker
 
981
  msgid "No links found (yet)"
982
  msgstr "Links (0)"
983
 
 
984
  #: includes/admin/search-form.php:32
985
+ #: includes/link-query.php:65
986
+ #@ broken-link-checker
987
  msgid "Search"
988
  msgstr "Procurar"
989
 
990
+ #: includes/link-query.php:66
991
  #@ broken-link-checker
 
992
  msgid "Search Results"
993
  msgstr "Resultados da procura"
994
 
995
+ #: includes/link-query.php:67
996
+ #: includes/link-query.php:114
997
  #@ broken-link-checker
 
 
998
  msgid "No links found for your query"
999
  msgstr "Sem resultados"
1000
 
1001
+ #: includes/links.php:218
1002
  #@ broken-link-checker
 
1003
  msgid "The plugin script was terminated while trying to check the link."
1004
  msgstr "O script do plugin terminou enquanto tentava verificar o link."
1005
 
1006
+ #: includes/links.php:264
1007
  #@ broken-link-checker
 
1008
  msgid "The plugin doesn't know how to check this type of link."
1009
  msgstr "O plugin não consegue verificar este tipo de link."
1010
 
1011
+ #: includes/links.php:357
1012
  #@ broken-link-checker
 
1013
  msgid "Link is valid."
1014
  msgstr "Link operacional."
1015
 
1016
+ #: includes/links.php:359
1017
  #@ broken-link-checker
 
1018
  msgid "Link is broken."
1019
  msgstr "Link sem ligação."
1020
 
1021
+ #: includes/links.php:571
1022
+ #: includes/links.php:673
1023
+ #: includes/links.php:700
1024
  #@ broken-link-checker
 
 
 
1025
  msgid "Link is not valid"
1026
  msgstr "Link inválido"
1027
 
1028
+ #: includes/links.php:588
1029
  #@ broken-link-checker
 
1030
  msgid "This link can not be edited because it is not used anywhere on this site."
1031
  msgstr "Este link não pode ser editado porque não é utilizado no sítio."
1032
 
1033
+ #: includes/links.php:614
1034
  #@ broken-link-checker
 
1035
  msgid "Failed to create a DB entry for the new URL."
1036
+ msgstr "Falhou a criação de um registo na Base de dados para um novo URL."
1037
 
1038
+ #: includes/links.php:680
1039
  #@ broken-link-checker
 
1040
  msgid "This link is not a redirect"
1041
  msgstr "O link não é um redirect"
1042
 
1043
+ #: includes/links.php:727
1044
+ #: includes/links.php:764
1045
  #@ broken-link-checker
 
 
1046
  msgid "Couldn't delete the link's database record"
1047
+ msgstr "Não é possível apagar o registo do link na Base de dados"
1048
 
1049
+ #: includes/links.php:852
 
 
1050
  #: modules/checkers/http.php:264
1051
  #: modules/extras/mediafire.php:101
1052
+ #@ link status
1053
+ #@ broken-link-checker
1054
  msgid "Unknown Error"
1055
  msgstr "Erro Desconhecido"
1056
 
1057
+ #: includes/links.php:876
1058
  #@ broken-link-checker
 
1059
  msgid "Not checked"
1060
  msgstr "Não verificado"
1061
 
1062
+ #: includes/links.php:879
1063
  #@ broken-link-checker
 
1064
  msgid "False positive"
1065
+ msgstr "Falso positivo"
1066
 
 
1067
  #: modules/extras/youtube.php:105
1068
  #: modules/extras/youtube.php:132
1069
+ #@ link status
1070
  msgid "OK"
1071
  msgstr "OK"
1072
 
 
1073
  #: includes/parsers.php:109
1074
  #, php-format
1075
+ #@ broken-link-checker
1076
  msgid "Editing is not implemented in the '%s' parser"
1077
+ msgstr "Edição não implementada no '%s' analisador sintático"
1078
 
 
1079
  #: includes/parsers.php:124
1080
  #, php-format
1081
+ #@ broken-link-checker
1082
  msgid "Unlinking is not implemented in the '%s' parser"
1083
+ msgstr "Remover links não foi implementado no '%s' analisador sintático"
1084
 
 
1085
  #: includes/admin/db-upgrade.php:95
1086
  #, php-format
1087
+ #@ broken-link-checker
1088
  msgid "Failed to delete old DB tables. Database error : %s"
1089
  msgstr "Não foi possível apagar as tabelas antigas da Base de dados. Erro de Base de dados : %s"
1090
 
1091
+ #: includes/admin/links-page-js.php:55
1092
+ #: includes/admin/links-page-js.php:403
1093
  #@ broken-link-checker
 
 
1094
  msgid "Wait..."
1095
  msgstr "Espere ..."
1096
 
1097
+ #: includes/admin/links-page-js.php:100
1098
+ #: includes/admin/table-printer.php:630
1099
  #@ broken-link-checker
 
 
1100
  msgid "Not broken"
1101
  msgstr "Funcional"
1102
 
1103
+ #: includes/admin/links-page-js.php:315
 
1104
  #, php-format
1105
+ #@ broken-link-checker
1106
  msgid "%d instances of the link were successfully modified."
1107
  msgstr "%d casos de links que se modificaram com sucesso."
1108
 
1109
+ #: includes/admin/links-page-js.php:321
 
1110
  #, php-format
1111
+ #@ broken-link-checker
1112
  msgid "However, %d instances couldn't be edited and still point to the old URL."
1113
  msgstr "No entanto, %d casos não puderam ser editados e ainda apontam para a antiga URL."
1114
 
1115
+ #: includes/admin/links-page-js.php:327
1116
  #@ broken-link-checker
 
1117
  msgid "The link could not be modified."
1118
  msgstr "O link não pode ser modificado."
1119
 
1120
+ #: includes/admin/links-page-js.php:330
1121
+ #: includes/admin/links-page-js.php:455
1122
  #@ broken-link-checker
 
 
1123
  msgid "The following error(s) occured :"
1124
  msgstr "Erro(s) :"
1125
 
1126
+ #: includes/admin/links-page-js.php:441
 
1127
  #, php-format
1128
+ #@ broken-link-checker
1129
  msgid "%d instances of the link were successfully unlinked."
1130
  msgstr "%d casos de links foram removidos com sucesso."
1131
 
1132
+ #: includes/admin/links-page-js.php:447
 
1133
  #, php-format
1134
+ #@ broken-link-checker
1135
  msgid "However, %d instances couldn't be removed."
1136
  msgstr "No entanto, %d casos não foram removidos."
1137
 
1138
+ #: includes/admin/links-page-js.php:452
1139
  #@ broken-link-checker
 
1140
  msgid "The plugin failed to remove the link."
1141
  msgstr "O plugin não apagou o link."
1142
 
1143
+ #: includes/admin/links-page-js.php:463
1144
+ #: includes/admin/table-printer.php:273
1145
+ #: includes/admin/table-printer.php:624
1146
  #@ broken-link-checker
 
 
 
1147
  msgid "Unlink"
1148
  msgstr "Remover link"
1149
 
1150
+ #: includes/admin/links-page-js.php:507
1151
  #@ broken-link-checker
 
1152
  msgid "Enter a name for the new custom filter"
1153
  msgstr "Introduza o nome para o novo filtro personalizado"
1154
 
1155
+ #: includes/admin/links-page-js.php:518
1156
  #@ broken-link-checker
 
1157
  msgid ""
1158
  "You are about to delete the current filter.\n"
1159
  "'Cancel' to stop, 'OK' to delete"
1160
  msgstr ""
1161
+ "Está a ponto de apagar o filtro atual.\n"
1162
  " 'Cancelar' para sair, 'Aceitar' para apagar"
1163
 
1164
+ #: includes/admin/links-page-js.php:538
1165
  #@ broken-link-checker
 
1166
  msgid ""
1167
  "Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
1168
  "'Cancel' to stop, 'OK' to delete"
1169
  msgstr ""
1170
+ "Tem a certeza que deseja eliminar todos os artigos, favoritos ou outros itens que contenham quaisquer dos links selecionados? Esta ação não pode ser anulada.\n"
1171
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1172
 
1173
+ #: includes/admin/links-page-js.php:548
1174
  #@ broken-link-checker
 
1175
  msgid ""
1176
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
1177
  "'Cancel' to stop, 'OK' to remove"
1179
  "Tem a certeza que deseja eliminar todos os links selecionados? Esta ação não pode ser anulada.\n"
1180
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1181
 
1182
+ #: includes/admin/links-page-js.php:657
1183
  #@ broken-link-checker
 
1184
  msgid "Enter a search string first."
1185
  msgstr "Introduza primeiro uma string de procura."
1186
 
1187
+ #: includes/admin/links-page-js.php:664
1188
  #@ broken-link-checker
 
1189
  msgid "Select one or more links to edit."
1190
  msgstr "Selecione um ou mais links para editar."
1191
 
 
1192
  #: includes/admin/options-page-js.php:54
1193
+ #@ broken-link-checker
1194
  msgid "Hide debug info"
1195
  msgstr "Ocultar informação"
1196
 
 
1197
  #: includes/admin/search-form.php:16
1198
+ #@ broken-link-checker
1199
  msgid "Save This Search As a Filter"
1200
  msgstr "Gravar esta Procura como um Filtro"
1201
 
 
1202
  #: includes/admin/search-form.php:26
1203
+ #@ broken-link-checker
1204
  msgid "Delete This Filter"
1205
  msgstr "Apagar Filtro"
1206
 
 
1207
  #: includes/admin/search-form.php:42
1208
+ #@ broken-link-checker
1209
  msgid "Link text"
1210
  msgstr "Texto do link"
1211
 
 
1212
  #: includes/admin/search-form.php:45
1213
+ #: includes/admin/table-printer.php:202
1214
+ #@ broken-link-checker
1215
  msgid "URL"
1216
  msgstr "URL"
1217
 
 
1218
  #: includes/admin/search-form.php:48
1219
+ #: includes/admin/table-printer.php:491
1220
+ #@ broken-link-checker
1221
  msgid "HTTP code"
1222
  msgstr "Código HTTP"
1223
 
 
1224
  #: includes/admin/search-form.php:51
1225
+ #@ broken-link-checker
1226
  msgid "Link status"
1227
  msgstr "Estado do link"
1228
 
 
1229
  #: includes/admin/search-form.php:68
1230
  #: includes/admin/search-form.php:85
1231
+ #@ broken-link-checker
1232
  msgid "Link type"
1233
  msgstr "Tipo de link"
1234
 
 
1235
  #: includes/admin/search-form.php:70
1236
+ #@ broken-link-checker
1237
  msgid "Any"
1238
  msgstr "Qualquer"
1239
 
 
1240
  #: includes/admin/search-form.php:74
1241
+ #@ broken-link-checker
1242
  msgid "Links used in"
1243
  msgstr "Links utilizados em"
1244
 
 
1245
  #: includes/admin/search-form.php:112
1246
+ #@ broken-link-checker
1247
  msgid "Search Links"
1248
  msgstr "Procurar"
1249
 
 
1250
  #: includes/admin/search-form.php:113
1251
+ #: includes/admin/table-printer.php:349
1252
+ #: includes/admin/table-printer.php:652
1253
+ #: includes/admin/table-printer.php:658
1254
+ #@ broken-link-checker
1255
  msgid "Cancel"
1256
  msgstr "Cancelar"
1257
 
1258
+ #: includes/admin/sidebar.php:85
1259
  #@ broken-link-checker
 
1260
  msgid "Donate $10, $20 or $50!"
1261
  msgstr "Doar $10, $20 ou $50!"
1262
 
1263
+ #: includes/admin/sidebar.php:88
1264
  #@ broken-link-checker
 
1265
  msgid "If you like this plugin, please donate to support development and maintenance!"
1266
  msgstr "Se gosta deste plugin, por favor faça um donativo para financiar o seu desenvolvimento e manutenção!"
1267
 
1268
+ #: includes/admin/sidebar.php:106
1269
  #@ broken-link-checker
 
1270
  msgid "Return to WordPress Dashboard"
1271
  msgstr "Regressar ao Painel"
1272
 
1273
+ #: includes/admin/sidebar.php:28
1274
+ #: includes/admin/sidebar.php:68
1275
  #@ broken-link-checker
 
 
1276
  msgid "More plugins by Janis Elsts"
1277
  msgstr "Mais plugins de Janis Elsts"
1278
 
1279
+ #: includes/admin/table-printer.php:179
1280
  #@ broken-link-checker
 
1281
  msgid "Compact View"
1282
  msgstr "Visão compacta"
1283
 
1284
+ #: includes/admin/table-printer.php:180
1285
  #@ broken-link-checker
 
1286
  msgid "Detailed View"
1287
  msgstr "Detalhes"
1288
 
1289
+ #: includes/admin/table-printer.php:209
1290
  #@ broken-link-checker
 
1291
  msgid "Source"
1292
  msgstr "Fonte"
1293
 
1294
+ #: includes/admin/table-printer.php:215
1295
  #@ broken-link-checker
 
1296
  msgid "Link Text"
1297
  msgstr "Texto do Link"
1298
 
1299
+ #: includes/admin/table-printer.php:268
1300
  #@ broken-link-checker
 
1301
  msgid "Bulk Actions"
1302
  msgstr "Edição em Massa"
1303
 
1304
+ #: includes/admin/table-printer.php:269
1305
+ #: includes/admin/table-printer.php:621
1306
  #@ broken-link-checker
 
 
1307
  msgid "Edit URL"
1308
  msgstr "Editar URL"
1309
 
1310
+ #: includes/admin/table-printer.php:270
1311
  #@ broken-link-checker
 
1312
  msgid "Recheck"
1313
  msgstr "Voltar a verificar"
1314
 
1315
+ #: includes/admin/table-printer.php:271
1316
  #@ broken-link-checker
 
1317
  msgid "Fix redirects"
1318
  msgstr "Reparar redirects"
1319
 
1320
+ #: includes/admin/table-printer.php:272
1321
  #@ broken-link-checker
 
1322
  msgid "Mark as not broken"
1323
  msgstr "Funcional"
1324
 
1325
+ #: includes/admin/table-printer.php:276
1326
  #@ broken-link-checker
 
1327
  msgid "Move sources to Trash"
1328
  msgstr "Apagar fontes"
1329
 
1330
+ #: includes/admin/table-printer.php:278
1331
  #@ broken-link-checker
 
1332
  msgid "Delete sources"
1333
  msgstr "Apagar fontes"
1334
 
1335
+ #: includes/admin/table-printer.php:293
1336
  #@ default
 
1337
  msgid "&laquo;"
1338
  msgstr "&laquo;"
1339
 
1340
+ #: includes/admin/table-printer.php:294
1341
  #@ default
 
1342
  msgid "&raquo;"
1343
  msgstr "&raquo;"
1344
 
1345
+ #: includes/admin/table-printer.php:302
 
1346
  #, php-format
1347
+ #@ broken-link-checker
1348
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1349
  msgstr "Mostrando %s&#8211;%s de <span class=\"current-link-count\">%s</span>"
1350
 
1351
+ #: includes/admin/table-printer.php:325
1352
  #@ default
 
1353
  msgid "Bulk Edit URLs"
1354
  msgstr "Editar URLs em massa"
1355
 
1356
+ #: includes/admin/table-printer.php:327
1357
  #@ broken-link-checker
 
1358
  msgid "Find"
1359
  msgstr "Procura"
1360
 
1361
+ #: includes/admin/table-printer.php:331
1362
  #@ broken-link-checker
 
1363
  msgid "Replace with"
1364
  msgstr "Substituir com"
1365
 
1366
+ #: includes/admin/table-printer.php:339
1367
  #@ broken-link-checker
 
1368
  msgid "Case sensitive"
1369
  msgstr "Coincidir maiúsculas/minúsculas"
1370
 
1371
+ #: includes/admin/table-printer.php:343
1372
  #@ broken-link-checker
 
1373
  msgid "Regular expression"
1374
  msgstr "Expressão regular"
1375
 
1376
+ #: includes/admin/table-printer.php:351
1377
  #@ broken-link-checker
 
1378
  msgid "Update"
1379
  msgstr "Atualizar"
1380
 
1381
+ #: includes/admin/table-printer.php:476
1382
  #@ broken-link-checker
 
1383
  msgid "Post published on"
1384
+ msgstr "Artigo publicado em"
1385
 
1386
+ #: includes/admin/table-printer.php:481
1387
  #@ broken-link-checker
 
1388
  msgid "Link last checked"
1389
  msgstr "Última verificação"
1390
 
1391
+ #: includes/admin/table-printer.php:485
1392
  #@ broken-link-checker
 
1393
  msgid "Never"
1394
  msgstr "Nunca"
1395
 
1396
+ #: includes/admin/table-printer.php:496
1397
  #@ broken-link-checker
 
1398
  msgid "Response time"
1399
  msgstr "Tempo de resposta"
1400
 
1401
+ #: includes/admin/table-printer.php:498
 
1402
  #, php-format
1403
+ #@ broken-link-checker
1404
  msgid "%2.3f seconds"
1405
  msgstr "%2.3f segundos"
1406
 
1407
+ #: includes/admin/table-printer.php:501
1408
  #@ broken-link-checker
 
1409
  msgid "Final URL"
1410
  msgstr "URL final"
1411
 
1412
+ #: includes/admin/table-printer.php:506
1413
  #@ broken-link-checker
 
1414
  msgid "Redirect count"
1415
  msgstr "Contagem de redirects"
1416
 
1417
+ #: includes/admin/table-printer.php:511
1418
  #@ broken-link-checker
 
1419
  msgid "Instance count"
1420
  msgstr "Contagem de casos"
1421
 
1422
+ #: includes/admin/table-printer.php:520
 
1423
  #, php-format
1424
+ #@ broken-link-checker
1425
  msgid "This link has failed %d time."
1426
  msgid_plural "This link has failed %d times."
1427
  msgstr[0] "Este link falhou %d vez."
1428
  msgstr[1] "Este link falhou %d vezes."
1429
 
1430
+ #: includes/admin/table-printer.php:528
 
1431
  #, php-format
1432
+ #@ broken-link-checker
1433
  msgid "This link has been broken for %s."
1434
  msgstr "Link offline durante %s."
1435
 
1436
+ #: includes/admin/table-printer.php:539
1437
  #@ broken-link-checker
 
1438
  msgid "Log"
1439
+ msgstr "Registo"
1440
 
1441
+ #: includes/admin/table-printer.php:564
1442
  #@ broken-link-checker
 
1443
  msgid "Show more info about this link"
1444
  msgstr "Mostrar mais informação sobre este link"
1445
 
1446
+ #: includes/admin/table-printer.php:598
1447
  #@ broken-link-checker
 
1448
  msgid "Broken for"
1449
  msgstr "Offline"
1450
 
1451
+ #: includes/admin/table-printer.php:621
1452
  #@ broken-link-checker
 
1453
  msgid "Edit link URL"
1454
  msgstr "Editar URL do link"
1455
 
1456
+ #: includes/admin/table-printer.php:623
1457
  #@ broken-link-checker
 
1458
  msgid "Remove this link from all posts"
1459
  msgstr "Eliminar este link"
1460
 
1461
+ #: includes/admin/table-printer.php:629
1462
  #@ broken-link-checker
 
1463
  msgid "Remove this link from the list of broken links and mark it as valid"
1464
  msgstr "Eliminar este link da lista dos links offline e marcá-lo como válido"
1465
 
1466
+ #: includes/admin/table-printer.php:652
1467
  #@ broken-link-checker
 
1468
  msgid "Cancel URL editing"
1469
  msgstr "Cancelar a edição do URL"
1470
 
1471
+ #: includes/admin/table-printer.php:659
1472
  #@ broken-link-checker
 
1473
  msgid "Update URL"
1474
  msgstr "Atualizar URL"
1475
 
1476
+ #: includes/admin/table-printer.php:686
1477
  #@ broken-link-checker
 
1478
  msgid "[An orphaned link! This is a bug.]"
1479
+ msgstr "[Um link órfão! Bug.]"
1480
 
 
1481
  #: modules/checkers/http.php:243
1482
+ #@ broken-link-checker
1483
  msgid "Server Not Found"
1484
  msgstr "Servidor Não Encontrado"
1485
 
 
1486
  #: modules/checkers/http.php:258
1487
+ #@ broken-link-checker
1488
  msgid "Connection Failed"
1489
  msgstr "Sem Ligação"
1490
 
 
1491
  #: modules/checkers/http.php:293
1492
  #: modules/checkers/http.php:363
1493
  #, php-format
1494
+ #@ broken-link-checker
1495
  msgid "HTTP code : %d"
1496
  msgstr "Código HTTP : %d"
1497
 
 
1498
  #: modules/checkers/http.php:295
1499
  #: modules/checkers/http.php:365
1500
+ #@ broken-link-checker
1501
  msgid "(No response)"
1502
  msgstr "(Sem resposta)"
1503
 
 
1504
  #: modules/checkers/http.php:301
1505
+ #@ broken-link-checker
1506
  msgid "Most likely the connection timed out or the domain doesn't exist."
1507
  msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
1508
 
 
1509
  #: modules/checkers/http.php:372
1510
+ #@ broken-link-checker
1511
  msgid "Request timed out."
1512
  msgstr "Tempo de espera esgotado."
1513
 
 
1514
  #: modules/checkers/http.php:390
1515
+ #@ broken-link-checker
1516
  msgid "Using Snoopy"
1517
  msgstr "Utilizando Snoopy"
1518
 
 
1519
  #: modules/containers/blogroll.php:21
1520
+ #@ broken-link-checker
1521
  msgid "Bookmark"
1522
  msgstr "Favorito"
1523
 
 
1524
  #: modules/containers/blogroll.php:27
1525
  #: modules/containers/blogroll.php:46
1526
+ #@ broken-link-checker
1527
  msgid "Edit this bookmark"
1528
  msgstr "Editar este favorito"
1529
 
 
1530
  #: modules/containers/blogroll.php:47
1531
  #, php-format
1532
+ #@ default
1533
  msgid ""
1534
  "You are about to delete this link '%s'\n"
1535
  " 'Cancel' to stop, 'OK' to delete."
1537
  "Está a ponto de apagar este link '%s'\n"
1538
  " 'Cancelar' para sair, 'Aceitar' para apagar."
1539
 
 
1540
  #: modules/containers/blogroll.php:97
1541
  #, php-format
1542
+ #@ broken-link-checker
1543
  msgid "Updating bookmark %d failed"
1544
  msgstr "Atualização do favorito %d falhou"
1545
 
 
1546
  #: modules/containers/blogroll.php:128
1547
  #, php-format
1548
+ #@ broken-link-checker
1549
  msgid "Failed to delete blogroll link \"%s\" (%d)"
1550
  msgstr "Não foi possível eliminar o link blogroll \"%s\" (%d)"
1551
 
 
1552
  #: modules/containers/blogroll.php:299
1553
  #, php-format
1554
+ #@ broken-link-checker
1555
  msgid "%d blogroll link deleted."
1556
  msgid_plural "%d blogroll links deleted."
1557
  msgstr[0] "%d link blogroll apagado."
1558
  msgstr[1] "%d links blogroll apagados."
1559
 
 
1560
  #: modules/containers/comment.php:53
1561
  #, php-format
1562
+ #@ broken-link-checker
1563
  msgid "Updating comment %d failed"
1564
  msgstr "Não foi possível atualizar o comentário %d"
1565
 
 
1566
  #: modules/containers/comment.php:74
1567
  #, php-format
1568
+ #@ broken-link-checker
1569
  msgid "Failed to delete comment %d"
1570
  msgstr "Erro ao apagar o comentário %d"
1571
 
 
1572
  #: modules/containers/comment.php:95
1573
  #, php-format
1574
+ #@ broken-link-checker
1575
  msgid "Can't move comment %d to the trash"
1576
  msgstr "Não pode mover o comentário %d para o lixo"
1577
 
 
1578
  #: modules/containers/comment.php:160
1579
+ #@ default
1580
  msgid "Delete Permanently"
1581
  msgstr "Apagado definitivamente"
1582
 
 
1583
  #: modules/containers/comment.php:166
1584
+ #@ broken-link-checker
1585
  msgid "View comment"
1586
  msgstr "Ver comentário"
1587
 
 
1588
  #: modules/containers/comment.php:183
1589
+ #@ broken-link-checker
1590
  msgid "Comment"
1591
  msgstr "Comentário"
1592
 
 
1593
  #: modules/containers/comment.php:356
1594
  #, php-format
1595
+ #@ broken-link-checker
1596
  msgid "%d comment has been deleted."
1597
  msgid_plural "%d comments have been deleted."
1598
  msgstr[0] "%d comentário foi apagado."
1599
  msgstr[1] "%d comentários foram apagados."
1600
 
 
1601
  #: modules/containers/comment.php:375
1602
  #, php-format
1603
+ #@ broken-link-checker
1604
  msgid "%d comment moved to the Trash."
1605
  msgid_plural "%d comments moved to the Trash."
1606
  msgstr[0] "%d comentário apagado."
1607
  msgstr[1] "%d comentários apagados."
1608
 
 
1609
  #: modules/containers/custom_field.php:84
1610
  #, php-format
1611
+ #@ broken-link-checker
1612
  msgid "Failed to update the meta field '%s' on %s [%d]"
1613
  msgstr "Falhou a atualização do campo meta '%s' em %s [%d]"
1614
 
 
1615
  #: modules/containers/custom_field.php:110
1616
  #, php-format
1617
+ #@ broken-link-checker
1618
  msgid "Failed to delete the meta field '%s' on %s [%d]"
1619
  msgstr "Erro ao apagar o campo meta '%s' em %s [%d]"
1620
 
 
1621
  #: modules/containers/custom_field.php:187
1622
+ #@ default
1623
  msgid "Edit this post"
1624
  msgstr "Editar post"
1625
 
 
1626
  #: modules/containers/custom_field.php:217
1627
  #, php-format
1628
+ #@ broken-link-checker
1629
  msgid "View \"%s\""
1630
  msgstr "Ver \"%s\""
1631
 
 
1632
  #: modules/containers/dummy.php:34
1633
  #: modules/containers/dummy.php:45
1634
  #, php-format
1635
+ #@ broken-link-checker
1636
  msgid "I don't know how to edit a '%s' [%d]."
1637
  msgstr "Não é possível editar '%s' [%d]."
1638
 
 
1639
  #: modules/extras/dailymotion-embed.php:23
1640
+ #@ broken-link-checker
1641
  msgid "DailyMotion Video"
1642
  msgstr "Vídeo DailyMotion"
1643
 
 
1644
  #: modules/extras/dailymotion-embed.php:24
1645
+ #@ broken-link-checker
1646
  msgid "Embedded DailyMotion video"
1647
  msgstr "Vídeo DailyMotion embutido"
1648
 
 
1649
  #: modules/extras/embed-parser-base.php:196
1650
+ #@ broken-link-checker
1651
  msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
1652
  msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
1653
 
 
1654
  #: modules/extras/fileserve.php:112
1655
  #: modules/extras/mediafire.php:91
1656
  #: modules/extras/mediafire.php:96
1657
  #: modules/extras/megaupload.php:81
1658
  #: modules/extras/megaupload.php:123
1659
  #: modules/extras/rapidshare.php:139
1660
+ #@ broken-link-checker
1661
  msgid "Not Found"
1662
  msgstr "Não Encontrado"
1663
 
 
1664
  #: modules/extras/megaupload.php:130
1665
+ #@ broken-link-checker
1666
  msgid "File Temporarily Unavailable"
1667
  msgstr "Ficheiro Temporariamente Indisponível"
1668
 
 
1669
  #: modules/extras/megaupload.php:136
1670
+ #@ broken-link-checker
1671
  msgid "API Error"
1672
  msgstr "Erro API"
1673
 
 
1674
  #: modules/extras/rapidshare.php:158
1675
+ #@ broken-link-checker
1676
  msgid "RS Server Down"
1677
  msgstr "Servidor RS Desligado"
1678
 
 
1679
  #: modules/extras/rapidshare.php:165
1680
+ #@ broken-link-checker
1681
  msgid "File Blocked"
1682
  msgstr "Ficheiro Bloqueado"
1683
 
 
1684
  #: modules/extras/rapidshare.php:172
1685
+ #@ broken-link-checker
1686
  msgid "File Locked"
1687
  msgstr "Ficheiro Bloqueado"
1688
 
 
1689
  #: modules/extras/rapidshare.php:183
1690
  #, php-format
1691
+ #@ broken-link-checker
1692
  msgid "RapidShare : %s"
1693
  msgstr "Rapidshare : %s"
1694
 
 
1695
  #: modules/extras/rapidshare.php:189
1696
  #, php-format
1697
+ #@ broken-link-checker
1698
  msgid "RapidShare API error: %s"
1699
  msgstr "Rapidshare erro API: %s"
1700
 
 
1701
  #: modules/extras/vimeo-embed.php:24
1702
+ #@ broken-link-checker
1703
  msgid "Vimeo Video"
1704
  msgstr "Vídeo Vimeo"
1705
 
 
1706
  #: modules/extras/vimeo-embed.php:25
1707
+ #@ broken-link-checker
1708
  msgid "Embedded Vimeo video"
1709
  msgstr "Vídeo Vimeo embutido"
1710
 
 
1711
  #: modules/extras/youtube-embed.php:24
1712
  #: modules/extras/youtube-iframe.php:25
1713
+ #@ broken-link-checker
1714
  msgid "YouTube Video"
1715
  msgstr "Vídeo YouTube"
1716
 
 
1717
  #: modules/extras/youtube-embed.php:25
1718
  #: modules/extras/youtube-iframe.php:26
1719
+ #@ broken-link-checker
1720
  msgid "Embedded YouTube video"
1721
  msgstr "Vídeo YouTube embutido"
1722
 
 
1723
  #: modules/extras/youtube.php:73
1724
  #: modules/extras/youtube.php:76
1725
+ #@ broken-link-checker
1726
  msgid "Video Not Found"
1727
  msgstr "Vídeo Não Encontrado"
1728
 
 
1729
  #: modules/extras/youtube.php:84
1730
+ #@ broken-link-checker
1731
  msgid "Video Removed"
1732
  msgstr "Vídeo Apagado"
1733
 
 
1734
  #: modules/extras/youtube.php:92
1735
+ #@ broken-link-checker
1736
  msgid "Invalid Video ID"
1737
  msgstr "Vídeo ID Inválido"
1738
 
 
1739
  #: modules/extras/youtube.php:104
1740
+ #@ broken-link-checker
1741
  msgid "Video OK"
1742
  msgstr "Vídeo OK"
1743
 
 
1744
  #: modules/extras/youtube.php:118
1745
  #, php-format
1746
+ #@ broken-link-checker
1747
  msgid "Video status : %s%s"
1748
  msgstr "Vídeo status : %s%s"
1749
 
 
1750
  #: modules/extras/youtube.php:137
1751
+ #@ broken-link-checker
1752
  msgid "Video Restricted"
1753
  msgstr "Vídeo Restrito"
1754
 
 
1755
  #: modules/extras/youtube.php:154
1756
+ #@ default
1757
  msgid "Unknown YouTube API response received."
1758
  msgstr "Resposta API YouTube desconhecida."
1759
 
 
1760
  #: modules/parsers/image.php:159
1761
+ #@ broken-link-checker
1762
  msgid "Image"
1763
  msgstr "Imagem"
1764
 
 
1765
  #: modules/parsers/metadata.php:117
1766
+ #@ broken-link-checker
1767
  msgid "Custom field"
1768
  msgstr "Campo personalizado"
1769
 
1770
+ #: core/core.php:727
1771
  #@ broken-link-checker
 
1772
  msgid "Send authors e-mail notifications about broken links in their posts"
1773
  msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
1774
 
1775
+ #: core/core.php:2388
1776
  #@ broken-link-checker
 
1777
  msgctxt "current load"
1778
  msgid "Unknown"
1779
  msgstr "Desconhecido"
1780
 
1781
+ #: core/core.php:3028
 
1782
  #, php-format
1783
+ #@ broken-link-checker
1784
  msgid "Broken Link Checker has detected %d new broken link in your posts."
1785
  msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
1786
  msgstr[0] "%d novo link offline encontrado nos seus artigos."
1787
  msgstr[1] "%d novos links offline encontrados nos seus artigos."
1788
 
1789
+ #: includes/admin/table-printer.php:582
1790
  #@ broken-link-checker
 
1791
  msgctxt "checked how long ago"
1792
  msgid "Checked"
1793
  msgstr "Verificado"
1794
 
 
1795
  #: includes/extra-strings.php:2
1796
+ #@ broken-link-checker
1797
  msgctxt "module name"
1798
  msgid "Basic HTTP"
1799
  msgstr "HTTP Básico"
1800
 
 
1801
  #: includes/extra-strings.php:3
1802
+ #@ broken-link-checker
1803
  msgctxt "module name"
1804
  msgid "Blogroll items"
1805
  msgstr "Itens blogroll"
1806
 
 
1807
  #: includes/extra-strings.php:4
1808
+ #@ broken-link-checker
1809
  msgctxt "module name"
1810
  msgid "Comments"
1811
  msgstr "Comentários"
1812
 
 
1813
  #: includes/extra-strings.php:5
1814
+ #@ broken-link-checker
1815
  msgctxt "module name"
1816
  msgid "Custom fields"
1817
  msgstr "Campos personalizados"
1818
 
 
1819
  #: includes/extra-strings.php:6
1820
+ #@ broken-link-checker
1821
  msgctxt "module name"
1822
  msgid "Embedded DailyMotion videos"
1823
  msgstr "Vídeos DailyMotion embutido"
1824
 
 
1825
  #: includes/extra-strings.php:9
1826
+ #@ broken-link-checker
1827
  msgctxt "module name"
1828
  msgid "Embedded Vimeo videos"
1829
  msgstr "Vídeo Vimeo embutido"
1830
 
 
1831
  #: includes/extra-strings.php:10
1832
+ #@ broken-link-checker
1833
  msgctxt "module name"
1834
  msgid "Embedded YouTube videos"
1835
  msgstr "Vídeos YouTube embutido"
1836
 
 
1837
  #: includes/extra-strings.php:11
1838
+ #@ broken-link-checker
1839
  msgctxt "module name"
1840
  msgid "Embedded YouTube videos (old embed code)"
1841
  msgstr "Vídeos YouTube embutido (código antigo)"
1842
 
 
1843
  #: includes/extra-strings.php:13
1844
+ #@ broken-link-checker
1845
  msgctxt "module name"
1846
  msgid "HTML images"
1847
  msgstr "Imagens HTML"
1848
 
 
1849
  #: includes/extra-strings.php:14
1850
+ #@ broken-link-checker
1851
  msgctxt "module name"
1852
  msgid "HTML links"
1853
  msgstr "HTML links"
1854
 
 
1855
  #: includes/extra-strings.php:15
1856
+ #@ broken-link-checker
1857
  msgctxt "module name"
1858
  msgid "MediaFire API"
1859
  msgstr "MediaFire API"
1860
 
 
1861
  #: includes/extra-strings.php:16
1862
+ #@ broken-link-checker
1863
  msgctxt "module name"
1864
  msgid "MegaUpload API"
1865
  msgstr "MegaUpload API"
1866
 
 
1867
  #: includes/extra-strings.php:17
1868
+ #@ broken-link-checker
1869
  msgctxt "module name"
1870
  msgid "Plaintext URLs"
1871
  msgstr "Texto URLs"
1872
 
 
1873
  #: includes/extra-strings.php:18
1874
+ #@ broken-link-checker
1875
  msgctxt "module name"
1876
  msgid "RapidShare API"
1877
  msgstr "RapidShare API"
1878
 
 
1879
  #: includes/extra-strings.php:19
1880
+ #@ broken-link-checker
1881
  msgctxt "module name"
1882
  msgid "YouTube API"
1883
  msgstr "YouTube API"
1884
 
 
1885
  #: includes/extra-strings.php:20
1886
+ #@ broken-link-checker
1887
  msgctxt "module name"
1888
  msgid "Posts"
1889
  msgstr "Artigos"
1890
 
 
1891
  #: includes/extra-strings.php:21
1892
+ #@ broken-link-checker
1893
  msgctxt "module name"
1894
  msgid "Pages"
1895
  msgstr "Páginas"
1896
 
1897
+ #: includes/links.php:838
1898
  #@ broken-link-checker
 
1899
  msgctxt "link status"
1900
  msgid "Unknown"
1901
  msgstr "Desconhecido"
1902
 
1903
+ #: includes/links.php:882
 
1904
  #: modules/extras/fileserve.php:121
1905
  #: modules/extras/megaupload.php:115
1906
  #: modules/extras/rapidshare.php:145
1907
  #: modules/extras/rapidshare.php:151
1908
  #: modules/extras/rapidshare.php:178
1909
+ #@ broken-link-checker
1910
  msgctxt "link status"
1911
  msgid "OK"
1912
  msgstr "OK"
1913
 
 
1914
  #: includes/module-manager.php:123
1915
  #: includes/module-manager.php:140
1916
+ #@ broken-link-checker
1917
  msgctxt "module name"
1918
  msgid "Name"
1919
  msgstr "Nome"
1920
 
1921
+ #: includes/utility-class.php:245
 
1922
  #, php-format
1923
+ #@ broken-link-checker
1924
  msgid "%d second"
1925
  msgid_plural "%d seconds"
1926
  msgstr[0] "%d segundo"
1927
  msgstr[1] "%d segundos"
1928
 
1929
+ #: includes/utility-class.php:246
 
1930
  #, php-format
1931
+ #@ broken-link-checker
1932
  msgid "%d second ago"
1933
  msgid_plural "%d seconds ago"
1934
  msgstr[0] "%d segundo atrás"
1935
  msgstr[1] "%d segundos atrás"
1936
 
1937
+ #: includes/utility-class.php:249
 
1938
  #, php-format
1939
+ #@ broken-link-checker
1940
  msgid "%d minute"
1941
  msgid_plural "%d minutes"
1942
  msgstr[0] "%d minuto"
1943
  msgstr[1] "%d minutos"
1944
 
1945
+ #: includes/utility-class.php:250
 
1946
  #, php-format
1947
+ #@ broken-link-checker
1948
  msgid "%d minute ago"
1949
  msgid_plural "%d minutes ago"
1950
  msgstr[0] "%d minuto atrás"
1951
  msgstr[1] "%d minutos atrás"
1952
 
1953
+ #: includes/utility-class.php:253
 
1954
  #, php-format
1955
+ #@ broken-link-checker
1956
  msgid "%d hour"
1957
  msgid_plural "%d hours"
1958
  msgstr[0] "%d hora"
1959
  msgstr[1] "%d horas"
1960
 
1961
+ #: includes/utility-class.php:254
 
1962
  #, php-format
1963
+ #@ broken-link-checker
1964
  msgid "%d hour ago"
1965
  msgid_plural "%d hours ago"
1966
  msgstr[0] "%d hora atrás"
1967
  msgstr[1] "%d horas atrás"
1968
 
1969
+ #: includes/utility-class.php:257
 
1970
  #, php-format
1971
+ #@ broken-link-checker
1972
  msgid "%d day"
1973
  msgid_plural "%d days"
1974
  msgstr[0] "%d dia"
1975
  msgstr[1] "%d dias"
1976
 
1977
+ #: includes/utility-class.php:258
 
1978
  #, php-format
1979
+ #@ broken-link-checker
1980
  msgid "%d day ago"
1981
  msgid_plural "%d days ago"
1982
  msgstr[0] "%d dia atrás"
1983
  msgstr[1] "%d dias atrás"
1984
 
1985
+ #: includes/utility-class.php:261
 
1986
  #, php-format
1987
+ #@ broken-link-checker
1988
  msgid "%d month"
1989
  msgid_plural "%d months"
1990
  msgstr[0] "%d mês"
1991
  msgstr[1] "%d meses"
1992
 
1993
+ #: includes/utility-class.php:262
 
1994
  #, php-format
1995
+ #@ broken-link-checker
1996
  msgid "%d month ago"
1997
  msgid_plural "%d months ago"
1998
  msgstr[0] "%d mês atrás"
1999
  msgstr[1] "%d meses atrás"
2000
 
 
2001
  #: modules/containers/comment.php:153
2002
  #: modules/containers/comment.php:195
2003
+ #@ default
2004
  msgid "Edit comment"
2005
  msgstr "Editar comentário"
2006
 
 
2007
  #: modules/containers/comment.php:162
2008
+ #@ default
2009
  msgid "Move this comment to the trash"
2010
  msgstr "Apagar comentário"
2011
 
 
2012
  #: modules/containers/comment.php:162
2013
+ #@ default
2014
  msgctxt "verb"
2015
  msgid "Trash"
2016
  msgstr "Lixo"
2017
 
2018
+ #: core/core.php:760
 
2019
  #, php-format
2020
+ #@ broken-link-checker
2021
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
2022
+ msgstr "Exemplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
2023
 
2024
+ #: core/core.php:763
2025
+ #: core/core.php:794
2026
  #@ broken-link-checker
 
 
2027
  msgid "Click \"Save Changes\" to update example output."
2028
  msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
2029
 
2030
+ #: core/core.php:791
 
2031
  #, php-format
2032
+ #@ broken-link-checker
2033
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
2034
+ msgstr "Exemplo : Lorem ipsum <span %s> link removido</span>, dolor sit amet."
2035
 
 
2036
  #: includes/extra-strings.php:7
2037
+ #@ broken-link-checker
2038
  msgctxt "module name"
2039
  msgid "Embedded GoogleVideo videos"
2040
  msgstr "Vídeos GoogleVideos embutido"
2041
 
 
2042
  #: includes/extra-strings.php:8
2043
+ #@ broken-link-checker
2044
  msgctxt "module name"
2045
  msgid "Embedded Megavideo videos"
2046
  msgstr "Vídeos Megavideo embutido"
2047
 
 
2048
  #: includes/extra-strings.php:12
2049
+ #@ broken-link-checker
2050
  msgctxt "module name"
2051
  msgid "FileServe API"
2052
  msgstr "FileServe API"
2053
 
 
2054
  #: modules/extras/fileserve.php:55
2055
+ #@ broken-link-checker
2056
  msgid "Using FileServe API"
2057
  msgstr "Utilizar FileServe API"
2058
 
 
2059
  #: modules/extras/fileserve.php:115
2060
  #, php-format
2061
+ #@ broken-link-checker
2062
  msgid "FileServe : %d %s"
2063
  msgstr "FileServe : %d %s"
2064
 
 
2065
  #: modules/extras/googlevideo-embed.php:24
2066
+ #@ broken-link-checker
2067
  msgid "GoogleVideo Video"
2068
+ msgstr "Vídeo GoogleVideo"
2069
 
 
2070
  #: modules/extras/googlevideo-embed.php:25
2071
+ #@ broken-link-checker
2072
  msgid "Embedded GoogleVideo video"
2073
+ msgstr "Vídeo GoogleVideo embutido"
2074
 
 
2075
  #: modules/extras/megavideo-embed.php:24
2076
+ #@ broken-link-checker
2077
  msgid "Megavideo Video"
2078
+ msgstr "Vídeo Megavideo"
2079
 
 
2080
  #: modules/extras/megavideo-embed.php:25
2081
+ #@ broken-link-checker
2082
  msgid "Embedded Megavideo video"
2083
+ msgstr "Vídeo Megavideo embutido"
2084
 
 
2085
  #: modules/extras/rapidshare.php:51
2086
+ #@ broken-link-checker
2087
  msgid "Using RapidShare API"
2088
  msgstr "Utilizar RapidShare API"
2089
 
2090
+ #: includes/admin/table-printer.php:220
2091
+ #@ broken-link-checker
2092
+ msgid "Redirect URL"
2093
+ msgstr "Redirect URL"
2094
+
2095
+ #: includes/admin/table-printer.php:637
2096
+ #@ broken-link-checker
2097
+ msgid "Hide this link and do not report it again unless its status changes"
2098
+ msgstr "Ocultar este link e não reportá-lo de novo expecto se houver mudança de estado "
2099
+
2100
+ #: includes/admin/table-printer.php:638
2101
+ #@ broken-link-checker
2102
+ msgid "Dismiss"
2103
+ msgstr "Descartar"
2104
+
2105
+ #: includes/admin/table-printer.php:643
2106
+ #@ broken-link-checker
2107
+ msgid "Undismiss this link"
2108
+ msgstr "Restabelecer este link"
2109
+
2110
+ #: includes/admin/table-printer.php:644
2111
+ #@ broken-link-checker
2112
+ msgid "Undismiss"
2113
+ msgstr "Restabelecer"
2114
+
2115
+ #: includes/link-query.php:46
2116
+ #@ broken-link-checker
2117
+ msgid "Dismissed"
2118
+ msgstr "Descartados"
2119
+
2120
+ #: includes/link-query.php:47
2121
+ #@ broken-link-checker
2122
+ msgid "Dismissed Links"
2123
+ msgstr "Links descartados"
2124
+
2125
+ #: includes/link-query.php:48
2126
+ #@ broken-link-checker
2127
+ msgid "No dismissed links found"
2128
+ msgstr "Nenhuns links descartados encontrados"
2129
+
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 3.2
6
  Tested up to: 3.4.1
7
- Stable tag: 1.6
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
@@ -59,7 +59,7 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
59
  * Korean - [MinHyeong Lim](http://ssamture.net/)
60
  * Persian - [Omid Sheerkavand](http://qanal.ir/)
61
  * Polish - [http://positionmaker.pl](http://positionmaker.pl/)
62
- * Portuguese - [PedroDM](http://development.mowster.net/)
63
  * Romanian - [Ovidiu](http://www.jibo.ro)
64
  * Russian - [Anna Ozeritskaya](http://hweia.ru/)
65
  * Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
@@ -91,6 +91,9 @@ To upgrade your installation
91
 
92
  == Changelog ==
93
 
 
 
 
94
  = 1.6 =
95
  * Added a way to dismiss links. Dismissed links don't show up in the "Broken" and "Redirects" lists, but are still checked as normal and get the normal link styles (e.g. strike-through for broken links). Useful if you want to, for example, acknowledge that a link is broken and leave it be.
96
  * Added a "Redirect URL" column. For redirects this will display the URL that the link redirects to. For normal, non-redirected links, it will be empty. This column is hidden by default. You can enable it in the "Screen Options" panel.
@@ -324,7 +327,7 @@ To upgrade your installation
324
  * "Discard" gone, replaced by "Not broken".
325
  * "Exclude" gone from action links.
326
  * Better handling of false positives.
327
- * FTP, mailto:, javascript: and other links with unsupported protocols now show up in the �All links� list.
328
 
329
  = 0.8.1 =
330
  * Updated Italian translation.
@@ -471,7 +474,7 @@ To upgrade your installation
471
 
472
  = 0.5 =
473
  * This is a near-complete rewrite with a lot of new features.
474
- * See �http://w-shadow.com/blog/2009/05/22/broken-link-checker-05/ for details.
475
 
476
  = 0.4.14 =
477
  * Fix false positives when the URL contains an #anchor
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 3.2
6
  Tested up to: 3.4.1
7
+ Stable tag: 1.6.1
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
59
  * Korean - [MinHyeong Lim](http://ssamture.net/)
60
  * Persian - [Omid Sheerkavand](http://qanal.ir/)
61
  * Polish - [http://positionmaker.pl](http://positionmaker.pl/)
62
+ * Portuguese - [mowster](http://wordpress.mowster.net/)
63
  * Romanian - [Ovidiu](http://www.jibo.ro)
64
  * Russian - [Anna Ozeritskaya](http://hweia.ru/)
65
  * Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
91
 
92
  == Changelog ==
93
 
94
+ = 1.6.1 =
95
+ * Fixed the "database not up to date" bug. Now the plugin should properly upgrade the DB.
96
+
97
  = 1.6 =
98
  * Added a way to dismiss links. Dismissed links don't show up in the "Broken" and "Redirects" lists, but are still checked as normal and get the normal link styles (e.g. strike-through for broken links). Useful if you want to, for example, acknowledge that a link is broken and leave it be.
99
  * Added a "Redirect URL" column. For redirects this will display the URL that the link redirects to. For normal, non-redirected links, it will be empty. This column is hidden by default. You can enable it in the "Screen Options" panel.
327
  * "Discard" gone, replaced by "Not broken".
328
  * "Exclude" gone from action links.
329
  * Better handling of false positives.
330
+ * FTP, mailto:, javascript: and other links with unsupported protocols now show up in the �All links� list.
331
 
332
  = 0.8.1 =
333
  * Updated Italian translation.
474
 
475
  = 0.5 =
476
  * This is a near-complete rewrite with a lot of new features.
477
+ * See �http://w-shadow.com/blog/2009/05/22/broken-link-checker-05/ for details.
478
 
479
  = 0.4.14 =
480
  * Fix false positives when the URL contains an #anchor