summaryrefslogtreecommitdiff
path: root/gtkexport.c
diff options
context:
space:
mode:
authorRuss Allbery <rra@debian.org>2014-08-24 23:00:07 -0700
committerRuss Allbery <rra@debian.org>2014-08-24 23:00:07 -0700
commit89685066474290e1fae4a78c268c8f68f1f4fba3 (patch)
treea6a4b9f2f642a67e3379c7eeb27c197075bafeef /gtkexport.c
parent19a4a81badf6373c7259ca4c229a529be6e9a93f (diff)
Imported Upstream version 1.03.001
Diffstat (limited to 'gtkexport.c')
-rw-r--r--gtkexport.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtkexport.c b/gtkexport.c
index cba8f62..06d17ba 100644
--- a/gtkexport.c
+++ b/gtkexport.c
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
- * $Id: gtkexport.c,v 1.50 2013/06/16 02:16:14 mdpetch Exp $
+ * $Id: gtkexport.c,v 1.51 2014/03/09 23:31:28 plm Exp $
*/
#include "config.h"
@@ -161,7 +161,7 @@ ExportGetValues(exportwidget * pew, exportsetup * pexs)
}
}
- /* html */
+ /* HTML */
pexs->szHTMLPictureURL = g_strdup(gtk_entry_get_text(GTK_ENTRY(pew->pwHTMLPictureURL)));
@@ -363,7 +363,7 @@ ExportSet(exportwidget * pew)
}
}
- /* html */
+ /* HTML */
if (pexs->szHTMLPictureURL)
gtk_entry_set_text(GTK_ENTRY(pew->pwHTMLPictureURL), pexs->szHTMLPictureURL);
@@ -400,7 +400,7 @@ ExportHTMLImages(void)
gchar *message, *expfolder, *folder, *command;
gint ok = FALSE;
fc = gtk_file_chooser_dialog_new(_
- ("Select top folder for html export"),
+ ("Select top folder for HTML export"),
NULL,
GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL);
@@ -446,7 +446,7 @@ ExportHTMLImages(void)
static void
GenHtmlImages(GtkWidget * UNUSED(widget), gpointer data)
-{ /* Temporariarly set html size and create images */
+{ /* Temporarily set HTML size and create images */
int temp = exsExport.nHtmlSize;
exsExport.nHtmlSize = (int) gtk_adjustment_get_value(GTK_ADJUSTMENT(data));
ExportHTMLImages();
@@ -626,7 +626,7 @@ GTKShowExport(exportsetup * pexs)
gtk_notebook_append_page(GTK_NOTEBOOK(pwNotebook), pwTable, gtk_label_new(_("Style")));
- /* html */
+ /* HTML */
pwFrame = gtk_frame_new(_("HTML export options"));
@@ -699,12 +699,12 @@ GTKShowExport(exportsetup * pexs)
g_signal_connect(G_OBJECT(pew->adjPNGSize), "value-changed", G_CALLBACK(SizeChanged), pew->pwPNGSize);
- /* Html size */
+ /* HTML size */
pwHBox = gtk_hbox_new(FALSE, 0);
gtk_container_set_border_width(GTK_CONTAINER(pwHBox), 4);
gtk_box_pack_start(GTK_BOX(pwVBox), pwHBox, FALSE, FALSE, 0);
- gtk_box_pack_start(GTK_BOX(pwHBox), gtk_label_new(_("Size of Html images:")), TRUE, TRUE, 0);
+ gtk_box_pack_start(GTK_BOX(pwHBox), gtk_label_new(_("Size of HTML images:")), TRUE, TRUE, 0);
gtk_box_pack_start(GTK_BOX(pwHBox), pew->pwHtmlSize = gtk_label_new(""), TRUE, TRUE, 0);
@@ -713,7 +713,7 @@ GTKShowExport(exportsetup * pexs)
gtk_scale_set_digits(GTK_SCALE(pwHScale), 0);
gtk_box_pack_start(GTK_BOX(pwVBox), pwHScale, FALSE, FALSE, 0);
- genHtml = gtk_button_new_with_label(_("Generate Html images..."));
+ genHtml = gtk_button_new_with_label(_("Generate HTML images..."));
pwHBox = gtk_hbox_new(FALSE, 0);
gtk_box_pack_start(GTK_BOX(pwHBox), genHtml, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(pwVBox), pwHBox, FALSE, FALSE, 0);