Revision: 822
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=822&view=rev
Author: frlan
Date: 2009-07-15 17:55:00 +0000 (Wed, 15 Jul 2009)
Log Message:
-----------
GeanyLaTeX: Make usage of Geany plugin API v147 and its centralized include
Modified Paths:
--------------
trunk/geanylatex/doc/geanylatex.tex
trunk/geanylatex/src/geanylatex.c
trunk/geanylatex/src/geanylatex.h
trunk/geanylatex/src/latexencodings.c
trunk/geanylatex/src/latexutils.c
Modified: trunk/geanylatex/doc/geanylatex.tex
===================================================================
--- trunk/geanylatex/doc/geanylatex.tex 2009-07-15 17:17:51 UTC (rev 821)
+++ trunk/geanylatex/doc/geanylatex.tex 2009-07-15 17:55:00 UTC (rev 822)
@@ -94,10 +94,10 @@
\subsection*{Since 0.4}
\begin{itemize}
\item Adding a icon for \LaTeX-Wizard to toolbar
- \item Adding shortcuts for inserting common list environments
- like \texttt{enumerate}, \texttt{itemize} and
+ \item Adding shortcuts for inserting common list environments
+ like \texttt{enumerate}, \texttt{itemize} and
\texttt{description}
- \item Some general bugfixes and improvments. As always, see
+ \item Some general bugfixes and improvments. As always, see
ChangeLog or svn log.
\end{itemize}
@@ -128,13 +128,13 @@
you used a prepared package e.g. from your distribution you probably
need to install an additional package, this might be called geany-dev
or geany-devel. Please note that in order to compile and use this
-plugin, you need Geany 0.17 or later (Geany Plugin API v136 or higher).
+plugin, you need Geany 0.17 or later (Geany Plugin API v147 or higher).
Furthermore you need, of course, a C compiler and the Make tool. The
GNU versions of these tools are recommended. Also there should be a
working \LaTeX-environment on your System.
-There is no special need in RAM or CPU so the plugin should compile and
+There is no special need in RAM or CPU so the plugin should compile and
run on all systems Geany is able to run.
\section{Installation}
@@ -155,12 +155,12 @@
For more configuration details run \texttt{./configure --help}
-By default the plugin is getting installed into the lib subfolder of
-your found Geany installation. So if you have installed Geany to
-\texttt{/usr/local/} the plugin will be installed to
+By default the plugin is getting installed into the lib subfolder of
+your found Geany installation. So if you have installed Geany to
+\texttt{/usr/local/} the plugin will be installed to
\texttt{/usr/local/lib/geany/}. Translation files will be installed to
-\texttt{/usr/local/share/locale/} in this case.
-
+\texttt{/usr/local/share/locale/} in this case.
+
If there are any errors during compilation, check your build environment
and try to find the error, otherwise contact one of the
authors\footnote{Contact data can be found at chapter \ref{contact},
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2009-07-15 17:17:51 UTC (rev 821)
+++ trunk/geanylatex/src/geanylatex.c 2009-07-15 17:55:00 UTC (rev 822)
@@ -24,7 +24,7 @@
#include "geanylatex.h"
-PLUGIN_VERSION_CHECK(136)
+PLUGIN_VERSION_CHECK(147)
PLUGIN_SET_INFO(_("LaTeX"), _("Plugin to provide better LaTeX support"),
VERSION,"Frank Lanitz <frank(a)frank.uvena.de>")
Modified: trunk/geanylatex/src/geanylatex.h
===================================================================
--- trunk/geanylatex/src/geanylatex.h 2009-07-15 17:17:51 UTC (rev 821)
+++ trunk/geanylatex/src/geanylatex.h 2009-07-15 17:55:00 UTC (rev 822)
@@ -25,18 +25,8 @@
#ifndef GEANYLATEX_H
#define GEANYLATEX_H
-
-#include "geany.h"
-#include "support.h"
-#include "document.h"
-#include "editor.h"
-#include "filetypes.h"
-#include "templates.h"
-#include "dialogs.h"
-#include "utils.h"
-#include "ui_utils.h"
-#include "keybindings.h"
-#include "prefs.h"
+#include <geanyplugin.h>
+#include <gtk/gtk.h>
#include "datatypes.h"
#include "letters.h"
#include "latexencodings.h"
@@ -47,12 +37,8 @@
#include "formatutils.h"
#include "latexstructure.h"
#include "latexkeybindings.h"
-#include "Scintilla.h"
-#include "plugindata.h"
-#include "geanyfunctions.h"
-#include <gtk/gtk.h>
#ifdef HAVE_LOCALE_H
# include <locale.h>
Modified: trunk/geanylatex/src/latexencodings.c
===================================================================
--- trunk/geanylatex/src/latexencodings.c 2009-07-15 17:17:51 UTC (rev 821)
+++ trunk/geanylatex/src/latexencodings.c 2009-07-15 17:55:00 UTC (rev 822)
@@ -20,7 +20,7 @@
*/
#include <gtk/gtk.h>
-#include "support.h"
+#include "geanylatex.h"
#include "encodings.h"
#include "latexencodings.h"
Modified: trunk/geanylatex/src/latexutils.c
===================================================================
--- trunk/geanylatex/src/latexutils.c 2009-07-15 17:17:51 UTC (rev 821)
+++ trunk/geanylatex/src/latexutils.c 2009-07-15 17:55:00 UTC (rev 822)
@@ -20,7 +20,7 @@
*/
#include "latexutils.h"
-#include "document.h"
+#include "geanylatex.h"
gchar **geanylatex_read_file_in_array(const gchar *filename)
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 818
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=818&view=rev
Author: ntrel
Date: 2009-07-15 14:36:50 +0000 (Wed, 15 Jul 2009)
Log Message:
-----------
Create 0.17.1 bugfix branch copied from the 0.17 release.
Added Paths:
-----------
branches/geany-plugins-0.17.1/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 817
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=817&view=rev
Author: frlan
Date: 2009-07-13 17:53:46 +0000 (Mon, 13 Jul 2009)
Log Message:
-----------
Minor improvment of Portuguese translation
Modified Paths:
--------------
trunk/geany-plugins/po/pt_PT.po
Modified: trunk/geany-plugins/po/pt_PT.po
===================================================================
--- trunk/geany-plugins/po/pt_PT.po 2009-07-13 17:47:09 UTC (rev 816)
+++ trunk/geany-plugins/po/pt_PT.po 2009-07-13 17:53:46 UTC (rev 817)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: geany-plugins 0.17\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-27 00:08+0200\n"
+"POT-Creation-Date: 2009-07-13 19:52+0200\n"
"PO-Revision-Date: 2009-06-26 17:52+0100\n"
"Last-Translator: André Glória <gloria_dot_andre_at_gmail_dot_com>\n"
"Language-Team: Portuguese\n"
@@ -482,7 +482,7 @@
#: ../geanygdb/src/gdb-ui-main.c:138
#, fuzzy
msgid "loaded"
-msgstr "Inclinada"
+msgstr "Inclinado"
#: ../geanygdb/src/gdb-ui-main.c:143
#, fuzzy
@@ -743,7 +743,7 @@
#: ../geanylatex/src/geanylatex.c:29
msgid "Plugin to provide better LaTeX support"
-msgstr "Plugin que fornece melhor suporte para LateX"
+msgstr "Plugin que melhora o suporte de LateX"
#: ../geanylatex/src/geanylatex.c:95
msgid "Marks selected text as italic"
@@ -850,7 +850,7 @@
"Sets the value of the \\author command. In most cases this should be your "
"name"
msgstr ""
-"Define o valor do comando \\author. Na maioria dos casos, deve colocar o seu "
+"Defina o valor do comando \\author. Na maioria dos casos, deve colocar o seu "
"nome"
#. Date
@@ -864,9 +864,9 @@
"LaTeX-document. Keeping it at \\today is a good \t\t decision if you don't "
"need any fixed date."
msgstr ""
-"Define o valor do comando \\date dentro do cabeçalho do seu\t\t documento "
-"LateX acabado de criar. Manter o valor em \\today é uma boa\t\tdecisão, caso "
-"não necessite de uma data fixa."
+"Defina o valor do comando \\date dentro do cabeçalho do seu documento LateX "
+"acabado de criar. Manter o valor em \\today é uma boa decisão, caso não "
+"necessite de uma data fixa."
#. Title of the new document
#: ../geanylatex/src/geanylatex.c:828
@@ -875,7 +875,7 @@
#: ../geanylatex/src/geanylatex.c:831
msgid "Sets the title of your new document."
-msgstr "Define o título do seu novo documento."
+msgstr "Defina o título do seu novo documento."
#. Papersize
#: ../geanylatex/src/geanylatex.c:837
@@ -927,7 +927,7 @@
#: ../geanylatex/src/geanylatex.c:1106
msgid "Run LaTeX-Wizard"
-msgstr "Correr o Assistente de LaTeX"
+msgstr "Executa o Assistente de LaTeX"
#: ../geanylatex/src/geanylatex.c:1108
msgid "Insert \\label"
@@ -987,7 +987,7 @@
"\n"
"Please report all bugs or feature requests to one of the authors."
msgstr ""
-"GeanyLaTex é uma extensão para melhorar o suporte de LaTeX no Geany.\n"
+"GeanyLaTex é uma extensão que melhora o suporte de LaTeX no Geany.\n"
"\n"
"Por favor, reporte todas as falhas ou pedidos de funcionalidades a um dos "
"autores."
@@ -1002,7 +1002,7 @@
#: ../geanylatex/src/geanylatex.c:1183
msgid "Starts a Wizard to easily create LaTeX-documents"
-msgstr "Inicia um assistente, para facilmente, criar um documento "
+msgstr "Inicia um assistente, para facilmente, criar um novo documento "
#: ../geanylatex/src/geanylatex.c:1188
msgid "Insert _Special Character"
@@ -1026,7 +1026,7 @@
#: ../geanylatex/src/geanylatex.c:1209
msgid "Helps at inserting labels to a document"
-msgstr "Ajuda a inserir etiquetas no documento"
+msgstr "Ajuda a Inserir etiquetas no documento"
#: ../geanylatex/src/geanylatex.c:1215
msgid "Insert _Environment"
@@ -1164,7 +1164,7 @@
#: ../geanylatex/src/bibtexlabels.c:37
msgid "Proceedings"
-msgstr "Papers Académicos"
+msgstr "Paper Académico"
#: ../geanylatex/src/bibtexlabels.c:38
msgid "Techreport"
@@ -1172,7 +1172,7 @@
#: ../geanylatex/src/bibtexlabels.c:39
msgid "Unpublished"
-msgstr "Papers Não Publicado"
+msgstr "Paper Não Publicado"
#: ../geanylatex/src/bibtexlabels.c:43
msgid "Address"
@@ -1285,7 +1285,6 @@
msgstr "Morada do Editor"
#: ../geanylatex/src/bibtexlabels.c:100
-#, fuzzy
msgid "Annotation for annotated bibliography styles"
msgstr "Anotação para uma lista de citações de livros, artigos e documentos"
@@ -1402,9 +1401,8 @@
msgstr "Sublinhado"
#: ../geanylatex/src/formatpatterns.c:41
-#, fuzzy
msgid "Slanted"
-msgstr "Inclinada"
+msgstr "Inclinado"
#: ../geanylatex/src/formatpatterns.c:42
msgid "Typewriter"
@@ -1855,7 +1853,7 @@
msgstr ""
#: ../geanyvc/src/geanyvc.c:2092
-msgid "Show diff of diretory"
+msgid "Show diff of directory"
msgstr ""
#: ../geanyvc/src/geanyvc.c:2094
@@ -2006,21 +2004,21 @@
msgid "Ignore All"
msgstr ""
-#: ../spellcheck/src/gui.c:408
+#: ../spellcheck/src/gui.c:422
#, c-format
msgid "Default (%s)"
msgstr ""
-#: ../spellcheck/src/gui.c:409 ../spellcheck/src/gui.c:420
+#: ../spellcheck/src/gui.c:423 ../spellcheck/src/gui.c:434
msgid "unknown"
msgstr ""
-#: ../spellcheck/src/gui.c:419
+#: ../spellcheck/src/gui.c:433
#, c-format
msgid "Toggle spell check while typing (current language: %s)"
msgstr ""
-#: ../spellcheck/src/gui.c:480
+#: ../spellcheck/src/gui.c:494
msgid "Spelling Suggestions"
msgstr ""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 816
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=816&view=rev
Author: frlan
Date: 2009-07-13 17:47:09 +0000 (Mon, 13 Jul 2009)
Log Message:
-----------
GeanyLaTeX: Correct a tooltip by removing unneeded \t from it.
Modified Paths:
--------------
trunk/geanylatex/ChangeLog
trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/ChangeLog
===================================================================
--- trunk/geanylatex/ChangeLog 2009-07-13 17:46:41 UTC (rev 815)
+++ trunk/geanylatex/ChangeLog 2009-07-13 17:47:09 UTC (rev 816)
@@ -1,3 +1,8 @@
+2009-07-13 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * Correct a tooltip by removing unneeded \t from it.
+
+
2009-07-09 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* Added a function to level up and level down structure element.
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2009-07-13 17:46:41 UTC (rev 815)
+++ trunk/geanylatex/src/geanylatex.c 2009-07-13 17:47:09 UTC (rev 816)
@@ -824,9 +824,9 @@
label_date = gtk_label_new(_("Date:"));
date_textbox = gtk_entry_new();
ui_widget_set_tooltip_text(date_textbox,
- _("Sets the value of the \\date command inside header of your\
- newly created LaTeX-document. Keeping it at \\today is a good \
- decision if you don't need any fixed date."));
+ _("Sets the value of the \\date command inside header of your "
+ "new created LaTeX-document. Keeping it at \\today is a good "
+ "decision if you don't need any fixed date."));
gtk_entry_set_text(GTK_ENTRY(date_textbox), "\\today");
gtk_misc_set_alignment(GTK_MISC(label_date), 0, 0.5);
gtk_table_attach_defaults(GTK_TABLE(table), label_date, 0, 1, 4, 5);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 815
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=815&view=rev
Author: frlan
Date: 2009-07-13 17:46:41 +0000 (Mon, 13 Jul 2009)
Log Message:
-----------
GeanyLaTeX: Updated Portuguese translation
Modified Paths:
--------------
trunk/geanylatex/po/ChangeLog
trunk/geanylatex/po/pt_PT.po
Modified: trunk/geanylatex/po/ChangeLog
===================================================================
--- trunk/geanylatex/po/ChangeLog 2009-07-13 15:47:41 UTC (rev 814)
+++ trunk/geanylatex/po/ChangeLog 2009-07-13 17:46:41 UTC (rev 815)
@@ -1,3 +1,8 @@
+2009-07-13 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * Updated Portuguese translation. Thanks to André Glória for providing.
+
+
2009-06-27 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* Added Portuguese translation. Thanks to André Glória for providing.
Modified: trunk/geanylatex/po/pt_PT.po
===================================================================
--- trunk/geanylatex/po/pt_PT.po 2009-07-13 15:47:41 UTC (rev 814)
+++ trunk/geanylatex/po/pt_PT.po 2009-07-13 17:46:41 UTC (rev 815)
@@ -3,13 +3,12 @@
# This file is distributed under the same license as the geanylatex package.
#
# André Glória, 2009
-#
msgid ""
msgstr ""
-"Project-Id-Version: geanylatex 0.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-26 23:58+0200\n"
-"PO-Revision-Date: 2009-06-26 17:52+0100\n"
+"Project-Id-Version: geanylatex 0.5\n"
+"Report-Msgid-Bugs-To: geany-i18n(a)uvena.de\n"
+"POT-Creation-Date: 2009-05-25 23:39+0200\n"
+"PO-Revision-Date: 2009-07-08 23:00+0100\n"
"Last-Translator: André Glória <gloria_dot_andre_at_gmail_dot_com>\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -24,7 +23,7 @@
#: src/geanylatex.c:29
msgid "Plugin to provide better LaTeX support"
-msgstr "Plugin que fornece melhor suporte para LateX"
+msgstr "Plugin que melhora o suporte de LateX"
#: src/geanylatex.c:95
msgid "Marks selected text as italic"
@@ -50,299 +49,283 @@
msgid "Show extra plugin toolbar"
msgstr "Activar barra de ferramentas extra, do plugin"
-#: src/geanylatex.c:395
+#: src/geanylatex.c:394
msgid "Insert Label"
msgstr "Inserir Etiqueta"
-#: src/geanylatex.c:408
+#: src/geanylatex.c:407
msgid "Label name:"
msgstr "Nome da Etiqueta:"
-#: src/geanylatex.c:445
+#: src/geanylatex.c:444
msgid "Insert Reference"
msgstr "Inserir Referência"
-#: src/geanylatex.c:458
+#: src/geanylatex.c:457
msgid "Reference name:"
msgstr "Nome da Referência"
-#: src/geanylatex.c:472
+#: src/geanylatex.c:471
msgid "_Standard Reference"
msgstr "_Referência Padrão"
-#: src/geanylatex.c:477
+#: src/geanylatex.c:476
msgid "_Page Reference"
msgstr "Referência de _Página"
-#: src/geanylatex.c:653
+#: src/geanylatex.c:652
msgid "More"
msgstr "Mais"
#. Documentclass
-#: src/geanylatex.c:745
+#: src/geanylatex.c:744
msgid "Documentclass:"
msgstr "Tipo de Documento:"
-#: src/geanylatex.c:748
+#: src/geanylatex.c:747
msgid "Choose the kind of document you want to write"
msgstr "Escolha o tipo de documento que pretende escrever"
-#: src/geanylatex.c:750 src/bibtexlabels.c:27
+#: src/geanylatex.c:749
+#: src/bibtexlabels.c:27
msgid "Book"
msgstr "Livro"
-#: src/geanylatex.c:752 src/bibtexlabels.c:26
+#: src/geanylatex.c:751
+#: src/bibtexlabels.c:26
msgid "Article"
msgstr "Artigo"
-#: src/geanylatex.c:754
+#: src/geanylatex.c:753
msgid "Report"
msgstr "Relatório"
-#: src/geanylatex.c:756
+#: src/geanylatex.c:755
msgid "Letter"
msgstr "Carta"
-#: src/geanylatex.c:758
+#: src/geanylatex.c:757
msgid "Presentation"
msgstr "Apresentação"
#. Encoding
-#: src/geanylatex.c:768
+#: src/geanylatex.c:767
msgid "Encoding:"
msgstr "Codificação: "
-#: src/geanylatex.c:772
+#: src/geanylatex.c:771
msgid "Set the encoding for your new document"
msgstr "Defina a codificação para o novo documento"
#. fontsize
-#: src/geanylatex.c:788
+#: src/geanylatex.c:787
msgid "Font size:"
msgstr "Tamanho de Letra"
-#: src/geanylatex.c:794
+#: src/geanylatex.c:793
msgid "Set the default font size of your new document"
msgstr "Defina o tamanho de letra, por omissão, para o novo documento"
#. Author
-#: src/geanylatex.c:802
+#: src/geanylatex.c:801
msgid "Author:"
msgstr "Autor:"
-#: src/geanylatex.c:805
-msgid ""
-"Sets the value of the \\author command. In most cases this should be your "
-"name"
-msgstr ""
-"Define o valor do comando \\author. Na maioria dos casos, deve colocar o seu "
-"nome"
+#: src/geanylatex.c:804
+msgid "Sets the value of the \\author command. In most cases this should be your name"
+msgstr "Defina o valor do comando \\author. Na maioria dos casos, deve colocar o seu nome"
#. Date
-#: src/geanylatex.c:816
+#: src/geanylatex.c:815
msgid "Date:"
msgstr "Data:"
-#: src/geanylatex.c:819
-msgid ""
-"Sets the value of the \\date command inside header of your\t\t newly created "
-"LaTeX-document. Keeping it at \\today is a good \t\t decision if you don't "
-"need any fixed date."
-msgstr ""
-"Define o valor do comando \\date dentro do cabeçalho do seu\t\t documento "
-"LateX acabado de criar. Manter o valor em \\today é uma boa\t\tdecisão, caso "
-"não necessite de uma data fixa."
+#: src/geanylatex.c:818
+msgid "Sets the value of the \\date command inside header of your\t\t newly created LaTeX-document. Keeping it at \\today is a good \t\t decision if you don't need any fixed date."
+msgstr "Defina o valor do comando \\date dentro do cabeçalho do seu documento LateX acabado de criar. Manter o valor em \\today é uma boa decisão, caso não necessite de uma data fixa."
#. Title of the new document
-#: src/geanylatex.c:828
+#: src/geanylatex.c:827
msgid "Title:"
msgstr "Título:"
-#: src/geanylatex.c:831
+#: src/geanylatex.c:830
msgid "Sets the title of your new document."
-msgstr "Define o título do seu novo documento."
+msgstr "Defina o título do seu novo documento."
#. Papersize
-#: src/geanylatex.c:837
+#: src/geanylatex.c:836
msgid "Paper size:"
msgstr "Tamanho do Papel:"
-#: src/geanylatex.c:840
+#: src/geanylatex.c:839
msgid "Choose the paper format for the newly created document"
msgstr "Escolha o formato do papel para o seu novo documento"
#. Building the wizard-dialog and showing it
-#: src/geanylatex.c:855
+#: src/geanylatex.c:854
msgid "LaTeX-Wizard"
msgstr "Assistente-LaTeX"
-#: src/geanylatex.c:866
+#: src/geanylatex.c:865
msgid "Use KOMA-script classes if possible"
msgstr "Usar as classes do script KOMA, se possível "
-#: src/geanylatex.c:868
+#: src/geanylatex.c:867
msgid ""
"Uses the KOMA-script classes by Markus Kohm.\n"
-"Keep in mind: To compile your document these classeshave to be installed "
-"before."
+"Keep in mind: To compile your document these classeshave to be installed before."
msgstr ""
"Usa as classes do script KOMA da autoria de Markus Kohm.\n"
-"Note: Para compilar o documento, estas classes têm de estar previamente "
-"instaladas."
+"Note: Para compilar o documento, estas classes têm de estar previamente instaladas."
-#: src/geanylatex.c:875
+#: src/geanylatex.c:874
msgid "Use draft mode"
msgstr "Usar modo de rascunho"
-#: src/geanylatex.c:877
-msgid ""
-"Set the draft flag inside new created documents to get documents with a "
-"number of debugging helpers"
-msgstr ""
-"Activa o modo de rascunho em novos documentos para obter maior verbosidade "
-"na depuração de erros"
+#: src/geanylatex.c:876
+msgid "Set the draft flag inside new created documents to get documents with a number of debugging helpers"
+msgstr "Activa o modo de rascunho em novos documentos para obter maior verbosidade na depuração de erros"
-#: src/geanylatex.c:1091
+#: src/geanylatex.c:1086
msgid "Dear Sir or Madame"
msgstr "Caro Senhor ou Senhora"
-#: src/geanylatex.c:1092
+#: src/geanylatex.c:1087
msgid "With kind regards"
msgstr "Melhores Cumprimentos"
-#: src/geanylatex.c:1106
+#: src/geanylatex.c:1101
msgid "Run LaTeX-Wizard"
-msgstr "Correr o Assistente de LaTeX"
+msgstr "Executa o Assistente de LaTeX"
-#: src/geanylatex.c:1108
+#: src/geanylatex.c:1103
msgid "Insert \\label"
msgstr "Inserir \\label"
-#: src/geanylatex.c:1110
+#: src/geanylatex.c:1105
msgid "Insert \\ref"
msgstr "Inserir \\ref"
-#: src/geanylatex.c:1112
+#: src/geanylatex.c:1107
msgid "Insert linebreak \\\\ "
msgstr "Inserir quebra de linha \\\\"
-#: src/geanylatex.c:1114
+#: src/geanylatex.c:1109
msgid "Turn input replacement on/off"
msgstr "Activa/Desactiva a substituição de caracteres, ao serem introduzidos"
-#: src/geanylatex.c:1118
+#: src/geanylatex.c:1113
msgid "Replace special characters"
msgstr "Substitui caracteres especiais"
-#: src/geanylatex.c:1121
+#: src/geanylatex.c:1116
msgid "Run insert environment dialog"
msgstr "Executa o menu de inserção de ambientes"
-#: src/geanylatex.c:1123
+#: src/geanylatex.c:1118
msgid "Insert \\item"
msgstr "Inserir \\item"
-#: src/geanylatex.c:1125
+#: src/geanylatex.c:1120
msgid "Format selection in bold font face"
msgstr "Formata a selecção como negrito"
-#: src/geanylatex.c:1127
+#: src/geanylatex.c:1122
msgid "Format selection in italic font face"
msgstr "Formata a selecção como itálico"
-#: src/geanylatex.c:1129
+#: src/geanylatex.c:1124
msgid "Format selection in typewriter font face"
msgstr "Formata a selecção para tipo de letra romana"
-#: src/geanylatex.c:1131
+#: src/geanylatex.c:1126
msgid "Format selection centered"
msgstr "Formata a selecção centrando-a"
-#: src/geanylatex.c:1133
+#: src/geanylatex.c:1128
msgid "Format selection left-aligned"
msgstr "Formata a selecção alinhando-a à esquerda"
-#: src/geanylatex.c:1135
+#: src/geanylatex.c:1130
msgid "Format selection right-aligned "
msgstr "Formata a selecção alinhando-a à direita"
-#: src/geanylatex.c:1141
+#: src/geanylatex.c:1136
msgid ""
"GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n"
"\n"
"Please report all bugs or feature requests to one of the authors."
msgstr ""
-"GeanyLaTex é uma extensão para melhorar o suporte de LaTeX no Geany.\n"
+"GeanyLaTex é uma extensão que melhora o suporte de LaTeX no Geany.\n"
"\n"
-"Por favor, reporte todas as falhas ou pedidos de funcionalidades a um dos "
-"autores."
+"Por favor, reporte todas as falhas ou pedidos de funcionalidades a um dos autores."
-#: src/geanylatex.c:1174
+#: src/geanylatex.c:1169
msgid "_LaTeX"
msgstr "_LaTeX"
-#: src/geanylatex.c:1180
+#: src/geanylatex.c:1175
msgid "LaTeX-_Wizard"
msgstr "Assis_tente-LaTeX"
-#: src/geanylatex.c:1183
+#: src/geanylatex.c:1178
msgid "Starts a Wizard to easily create LaTeX-documents"
-msgstr "Inicia um assistente, para facilmente, criar um documento "
+msgstr "Inicia um assistente, para facilmente, criar um novo documento "
-#: src/geanylatex.c:1188
+#: src/geanylatex.c:1183
msgid "Insert _Special Character"
msgstr "Inserir _Caracter Especial"
-#: src/geanylatex.c:1190
+#: src/geanylatex.c:1185
msgid "Helps to use some not very common letters and signs"
msgstr "Ajuda a usar algumas letras e sinais pouco usuais "
-#: src/geanylatex.c:1200
+#: src/geanylatex.c:1195
msgid "Insert _Reference"
msgstr "Inserir _Referência"
-#: src/geanylatex.c:1202
+#: src/geanylatex.c:1197
msgid "Inserting references to the document"
msgstr "Insere referências no documento"
-#: src/geanylatex.c:1207
+#: src/geanylatex.c:1202
msgid "Insert _Label"
msgstr "Inserir _Etiqueta"
-#: src/geanylatex.c:1209
+#: src/geanylatex.c:1204
msgid "Helps at inserting labels to a document"
-msgstr "Ajuda a inserir etiquetas no documento"
+msgstr "Ajuda a Inserir etiquetas no documento"
-#: src/geanylatex.c:1215
+#: src/geanylatex.c:1210
msgid "Insert _Environment"
msgstr "Inserir _Ambiente"
-#: src/geanylatex.c:1217
+#: src/geanylatex.c:1212
msgid "Helps at inserting an environment a document"
msgstr "Ajuda a inserir um ambiente no documento"
-#: src/geanylatex.c:1222
+#: src/geanylatex.c:1217
msgid "_BibTeX"
msgstr "_BibTeX"
-#: src/geanylatex.c:1238
+#: src/geanylatex.c:1233
msgid "_Format"
msgstr "_Formatar"
-#: src/geanylatex.c:1256
+#: src/geanylatex.c:1251
msgid "_Special Character Replacement"
msgstr "_Substituição de Caracteres Especiais"
-#: src/geanylatex.c:1264
+#: src/geanylatex.c:1259
msgid "Bulk _Replace Special Characters"
msgstr "Substituição de Caracteres Especiais em _Massa"
-#: src/geanylatex.c:1266
+#: src/geanylatex.c:1261
msgid "_Replace selected special cahracters with TeX substitutes"
-msgstr ""
-"Substitui os caracteres especiais seleccionados, por _expressões do TeX"
+msgstr "Substitui os caracteres especiais seleccionados, por _expressões do TeX"
-#: src/geanylatex.c:1274
+#: src/geanylatex.c:1269
msgid "Toggle _Special Character Replacement"
msgstr "Activa/Desactiva a _Substituição de Caracteres Especiais"
@@ -390,7 +373,9 @@
msgid "IBM 852 code page"
msgstr "IBM 852 code page"
-#: src/latexencodings.c:57 src/letters.c:41 src/bibtexlabels.c:35
+#: src/latexencodings.c:57
+#: src/letters.c:41
+#: src/bibtexlabels.c:35
msgid "Misc"
msgstr "Diversos"
@@ -448,7 +433,7 @@
#: src/bibtexlabels.c:37
msgid "Proceedings"
-msgstr "Papers Académicos"
+msgstr "Paper Académico"
#: src/bibtexlabels.c:38
msgid "Techreport"
@@ -456,7 +441,7 @@
#: src/bibtexlabels.c:39
msgid "Unpublished"
-msgstr "Papers Não Publicado"
+msgstr "Paper Não Publicado"
#: src/bibtexlabels.c:43
msgid "Address"
@@ -569,7 +554,6 @@
msgstr "Morada do Editor"
#: src/bibtexlabels.c:100
-#, fuzzy
msgid "Annotation for annotated bibliography styles"
msgstr "Anotação para uma lista de citações de livros, artigos e documentos"
@@ -614,12 +598,8 @@
msgstr "Jornal ou revista no qual o trabalho foi publicado"
#: src/bibtexlabels.c:111
-msgid ""
-"Hidden field used for specifying or overriding the alphabetical order of "
-"entries"
-msgstr ""
-"Campo oculto, usado para especificar uma ordenação das entradas, que não a "
-"alfabética"
+msgid "Hidden field used for specifying or overriding the alphabetical order of entries"
+msgstr "Campo oculto, usado para especificar uma ordenação das entradas, que não a alfabética"
#: src/bibtexlabels.c:112
msgid "Month of publication or creation if unpublished"
@@ -686,9 +666,8 @@
msgstr "Sublinhado"
#: src/formatpatterns.c:41
-#, fuzzy
msgid "Slanted"
-msgstr "Inclinada"
+msgstr "Inclinado"
#: src/formatpatterns.c:42
msgid "Typewriter"
@@ -734,10 +713,11 @@
msgid "Math"
msgstr "Matemática"
-#: src/latexenvironments.c:116
+#: src/latexenvironments.c:117
msgid "Insert Environment"
msgstr "Inserir ambiente"
-#: src/latexenvironments.c:130
+#: src/latexenvironments.c:131
msgid "Environment:"
msgstr "Ambiente:"
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.