mirror of https://github.com/GNOME/gimp.git
parent
0c50258300
commit
2b077e0958
23
ChangeLog
23
ChangeLog
|
@ -1,3 +1,26 @@
|
|||
Sun Feb 27 20:25:45 CET 2000 Sven Neumann <sven@gimp.org>
|
||||
|
||||
Script-Fu now has its own textdomain. This allows full
|
||||
localisation of the Script-Fu UI. Now all that's missing
|
||||
is a script that extracts the translatable trings out of
|
||||
the (script-fu-register ...) calls.
|
||||
|
||||
* Makefile.am
|
||||
* configure.in
|
||||
* po-script-fu/*: new files.
|
||||
|
||||
* app/plug_in.c: allow translation of the temporary installed
|
||||
Script-Fu scripts
|
||||
|
||||
* plug-ins/script-fu/Makefile.am
|
||||
* plug-ins/script-fu/script-fu-intl.h: new file
|
||||
|
||||
* plug-ins/script-fu/script-fu-console.c
|
||||
* plug-ins/script-fu/script-fu-scripts.c
|
||||
* plug-ins/script-fu/script-fu-server.c
|
||||
* plug-ins/script-fu/script-fu.c: bind to the gimp-script-fu
|
||||
textdomain and use gettext for all labels in the script UI.
|
||||
|
||||
2000-02-27 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* libgimp/gimphelpui.c: added documentation.
|
||||
|
|
|
@ -5,6 +5,7 @@ SUBDIRS = \
|
|||
po \
|
||||
po-libgimp \
|
||||
po-plug-ins \
|
||||
po-script-fu \
|
||||
intl \
|
||||
libgimp \
|
||||
app \
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -1839,7 +1839,6 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
break;
|
||||
|
||||
case PDB_TEMPORARY:
|
||||
plug_in_def = current_plug_in->user_data;
|
||||
prog = "none";
|
||||
|
||||
tmp = current_plug_in->temp_proc_defs;
|
||||
|
@ -1951,8 +1950,14 @@ plug_in_handle_proc_install (GPProcInstall *proc_install)
|
|||
entry.help_page = help_page;
|
||||
entry.description = NULL;
|
||||
|
||||
/* Below we use a hack to allow translations of Script-Fu paths.
|
||||
Would be nice if we could solve this properly, but I haven't
|
||||
found a way yet ... (Sven) */
|
||||
|
||||
if (plug_in_def && plug_in_def->locale_domain)
|
||||
menus_create_item_from_full_path (&entry, plug_in_def->locale_domain, proc);
|
||||
else if (strncmp (proc_def->db_info.name, "script_fu", 9) == 0)
|
||||
menus_create_item_from_full_path (&entry, "gimp-script-fu", proc);
|
||||
else
|
||||
menus_create_item_from_full_path (&entry, std_plugins_domain, proc);
|
||||
}
|
||||
|
|
|
@ -775,6 +775,7 @@ Makefile
|
|||
po/Makefile.in
|
||||
po-libgimp/Makefile.in
|
||||
po-plug-ins/Makefile.in
|
||||
po-script-fu/Makefile.in
|
||||
intl/Makefile
|
||||
tools/Makefile
|
||||
tools/pdbgen/Makefile
|
||||
|
@ -816,6 +817,7 @@ help/images/Makefile],
|
|||
sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
|
||||
sed -e "/POTFILES =/r po-libgimp/POTFILES" po-libgimp/Makefile.in > po-libgimp/Makefile
|
||||
sed -e "/POTFILES =/r po-plug-ins/POTFILES" po-plug-ins/Makefile.in > po-plug-ins/Makefile
|
||||
sed -e "/POTFILES =/r po-script-fu/POTFILES" po-script-fu/Makefile.in > po-script-fu/Makefile
|
||||
case "$CONFIG_FILES" in
|
||||
*plug-ins/perl*)
|
||||
if test -f plug-ins/perl/config.status; then
|
||||
|
|
|
@ -20,6 +20,7 @@ script_fu_SOURCES = \
|
|||
script-fu-console.h \
|
||||
script-fu-constants.c \
|
||||
script-fu-constants.h \
|
||||
script-fu-intl.h \
|
||||
script-fu-scripts.c \
|
||||
script-fu-scripts.h \
|
||||
script-fu-server.c \
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
#include "libgimp/gimp.h"
|
||||
#include "libgimp/gimpui.h"
|
||||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
#include "script-fu-intl.h"
|
||||
|
||||
#include "siod.h"
|
||||
#include "script-fu-console.h"
|
||||
|
@ -301,7 +301,7 @@ script_fu_console_interface (void)
|
|||
|
||||
gtk_box_pack_start (GTK_BOX (hbox), cint.cc,
|
||||
TRUE, TRUE, 0);
|
||||
gtk_widget_set_usize (cint.cc, (ENTRY_WIDTH*5)/6, 0);
|
||||
/* gtk_widget_set_usize (cint.cc, (ENTRY_WIDTH*5)/6, 0); */
|
||||
GTK_WIDGET_SET_FLAGS (cint.cc, GTK_CAN_DEFAULT);
|
||||
gtk_widget_grab_default (cint.cc);
|
||||
gtk_signal_connect (GTK_OBJECT (cint.cc), "key_press_event",
|
||||
|
@ -309,7 +309,7 @@ script_fu_console_interface (void)
|
|||
NULL);
|
||||
|
||||
button = gtk_button_new_with_label (_("Browse..."));
|
||||
gtk_widget_set_usize (button, (ENTRY_WIDTH)/6, 0);
|
||||
/* gtk_widget_set_usize (button, (ENTRY_WIDTH)/6, 0); */
|
||||
gtk_box_pack_start (GTK_BOX (hbox), button,
|
||||
FALSE, TRUE, 0);
|
||||
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
#include "siod.h"
|
||||
#include "script-fu-scripts.h"
|
||||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
#include "script-fu-intl.h"
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#define STRICT
|
||||
|
@ -1203,12 +1203,16 @@ script_fu_interface (SFScript *script)
|
|||
sf_interface.script = script;
|
||||
sf_interface.about_dialog = NULL;
|
||||
|
||||
title = g_new (guchar, strlen ("Script-Fu: ") + strlen (script->description));
|
||||
buf = strstr (script->description, "Script-Fu/");
|
||||
/* strip the first part of the menupath if it contains _("/Script-Fu/") */
|
||||
buf = strstr (gettext (script->description), _("/Script-Fu/"));
|
||||
if (buf)
|
||||
sprintf ((char *)title, "Script-Fu: %s", (buf + 10));
|
||||
title = g_strdup_printf (_("Script-Fu: %s"), (buf + strlen (_("/Script-Fu/"))));
|
||||
else
|
||||
sprintf ((char *)title, "Script-Fu: %s", script->description);
|
||||
title = g_strdup_printf (_("Script-Fu: %s"), gettext (script->description));
|
||||
|
||||
buf = strstr (title, "...");
|
||||
if (buf)
|
||||
*buf = '\0';
|
||||
|
||||
dlg = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||
gtk_quit_add_destroy (1, GTK_OBJECT (dlg));
|
||||
|
@ -1251,7 +1255,7 @@ script_fu_interface (SFScript *script)
|
|||
|
||||
for (i = start_args; i < script->num_args; i++)
|
||||
{
|
||||
gchar *label_text = script->arg_labels[i];
|
||||
gchar *label_text = gettext (script->arg_labels[i]);
|
||||
gfloat label_yalign = 0.5;
|
||||
gboolean widget_leftalign = TRUE;
|
||||
|
||||
|
@ -1301,7 +1305,7 @@ script_fu_interface (SFScript *script)
|
|||
case SF_TOGGLE:
|
||||
label_text = _("Script Toggle");
|
||||
script->args_widgets[i] =
|
||||
gtk_check_button_new_with_label (script->arg_labels[i]);
|
||||
gtk_check_button_new_with_label (gettext (script->arg_labels[i]));
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (script->args_widgets[i]),
|
||||
script->arg_values[i].sfa_toggle);
|
||||
gtk_signal_connect (GTK_OBJECT (script->args_widgets[i]), "toggled",
|
||||
|
@ -1433,7 +1437,8 @@ script_fu_interface (SFScript *script)
|
|||
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, TRUE, 0);
|
||||
gtk_container_set_border_width (GTK_CONTAINER (hbox), 4);
|
||||
|
||||
button = gtk_button_new_with_label (_(" Reset to Defaults "));
|
||||
button = gtk_button_new_with_label (_("Reset to Defaults"));
|
||||
gtk_misc_set_padding (GTK_MISC (GTK_BIN (button)->child), 2, 0);
|
||||
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
||||
(GtkSignalFunc) script_fu_reset_callback,
|
||||
NULL);
|
||||
|
|
|
@ -0,0 +1,46 @@
|
|||
/* The GIMP -- an image manipulation program
|
||||
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
||||
*
|
||||
* script-fu-intl.h
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
#ifndef __SCRIPT_FU_INTL_H__
|
||||
#define __SCRIPT_FU_INTL_H__
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
#ifdef HAVE_LC_MESSAGES
|
||||
#define INIT_I18N() G_STMT_START{ \
|
||||
setlocale(LC_MESSAGES, ""); \
|
||||
bindtextdomain("gimp-libgimp", LOCALEDIR); \
|
||||
bindtextdomain("gimp-script-fu", LOCALEDIR); \
|
||||
textdomain("gimp-script-fu"); \
|
||||
}G_STMT_END
|
||||
#else
|
||||
#define INIT_I18N() G_STMT_START{ \
|
||||
bindtextdomain("gimp-script-fu", LOCALEDIR); \
|
||||
textdomain("gimp-script-fu"); \
|
||||
}G_STMT_END
|
||||
#endif
|
||||
|
||||
#define INIT_I18N_UI() G_STMT_START{ \
|
||||
gtk_set_locale(); \
|
||||
setlocale (LC_NUMERIC, "C"); \
|
||||
INIT_I18N(); \
|
||||
}G_STMT_END
|
||||
|
||||
#endif /* __SCRIPT_FU_INTL_H__ */
|
|
@ -38,7 +38,7 @@
|
|||
#include "siod.h"
|
||||
#include "script-fu-scripts.h"
|
||||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
#include "script-fu-intl.h"
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#define STRICT
|
||||
|
@ -1203,12 +1203,16 @@ script_fu_interface (SFScript *script)
|
|||
sf_interface.script = script;
|
||||
sf_interface.about_dialog = NULL;
|
||||
|
||||
title = g_new (guchar, strlen ("Script-Fu: ") + strlen (script->description));
|
||||
buf = strstr (script->description, "Script-Fu/");
|
||||
/* strip the first part of the menupath if it contains _("/Script-Fu/") */
|
||||
buf = strstr (gettext (script->description), _("/Script-Fu/"));
|
||||
if (buf)
|
||||
sprintf ((char *)title, "Script-Fu: %s", (buf + 10));
|
||||
title = g_strdup_printf (_("Script-Fu: %s"), (buf + strlen (_("/Script-Fu/"))));
|
||||
else
|
||||
sprintf ((char *)title, "Script-Fu: %s", script->description);
|
||||
title = g_strdup_printf (_("Script-Fu: %s"), gettext (script->description));
|
||||
|
||||
buf = strstr (title, "...");
|
||||
if (buf)
|
||||
*buf = '\0';
|
||||
|
||||
dlg = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||
gtk_quit_add_destroy (1, GTK_OBJECT (dlg));
|
||||
|
@ -1251,7 +1255,7 @@ script_fu_interface (SFScript *script)
|
|||
|
||||
for (i = start_args; i < script->num_args; i++)
|
||||
{
|
||||
gchar *label_text = script->arg_labels[i];
|
||||
gchar *label_text = gettext (script->arg_labels[i]);
|
||||
gfloat label_yalign = 0.5;
|
||||
gboolean widget_leftalign = TRUE;
|
||||
|
||||
|
@ -1301,7 +1305,7 @@ script_fu_interface (SFScript *script)
|
|||
case SF_TOGGLE:
|
||||
label_text = _("Script Toggle");
|
||||
script->args_widgets[i] =
|
||||
gtk_check_button_new_with_label (script->arg_labels[i]);
|
||||
gtk_check_button_new_with_label (gettext (script->arg_labels[i]));
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (script->args_widgets[i]),
|
||||
script->arg_values[i].sfa_toggle);
|
||||
gtk_signal_connect (GTK_OBJECT (script->args_widgets[i]), "toggled",
|
||||
|
@ -1433,7 +1437,8 @@ script_fu_interface (SFScript *script)
|
|||
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, TRUE, 0);
|
||||
gtk_container_set_border_width (GTK_CONTAINER (hbox), 4);
|
||||
|
||||
button = gtk_button_new_with_label (_(" Reset to Defaults "));
|
||||
button = gtk_button_new_with_label (_("Reset to Defaults"));
|
||||
gtk_misc_set_padding (GTK_MISC (GTK_BIN (button)->child), 2, 0);
|
||||
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
||||
(GtkSignalFunc) script_fu_reset_callback,
|
||||
NULL);
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include "libgimp/gimp.h"
|
||||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
#include "script-fu-intl.h"
|
||||
|
||||
#include "gtk/gtk.h"
|
||||
#include "siod.h"
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "script-fu-scripts.h"
|
||||
#include "script-fu-server.h"
|
||||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
#include "script-fu-intl.h"
|
||||
|
||||
extern FILE *siod_output;
|
||||
|
||||
|
@ -142,7 +142,7 @@ query (void)
|
|||
};
|
||||
static gint nserver_args = sizeof (server_args) / sizeof (server_args[0]);
|
||||
|
||||
INIT_I18N ();
|
||||
gimp_plugin_domain_add ("gimp-script-fu");
|
||||
|
||||
gimp_install_procedure ("extension_script_fu",
|
||||
"A scheme interpreter for scripting GIMP operations",
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
Sun Feb 27 20:22:53 CET 2000 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* POTFILES.in: removed script-fu
|
||||
|
||||
Script-Fu now has its own textdomain. I have tried my best to
|
||||
move all translations into the new po-files in po-script-fu.
|
||||
|
||||
* de.po: updated german translation
|
||||
|
||||
Tue Feb 22 18:41:49 CET 2000 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* de.po: updated german translation
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
# Files from the Gimp distribution which have already been
|
||||
# marked to allow runtime translation of messages
|
||||
|
||||
|
@ -239,10 +238,6 @@ plug-ins/print/print.c
|
|||
plug-ins/rcm/rcm.c
|
||||
plug-ins/rcm/rcm_callback.c
|
||||
plug-ins/rcm/rcm_dialog.c
|
||||
plug-ins/script-fu/script-fu-console.c
|
||||
plug-ins/script-fu/script-fu-scripts.c
|
||||
plug-ins/script-fu/script-fu-server.c
|
||||
plug-ins/script-fu/script-fu.c
|
||||
plug-ins/sel2path/sel2path.c
|
||||
plug-ins/sgi/sgi.c
|
||||
plug-ins/sinus/sinus.c
|
||||
|
|
1094
po-plug-ins/de.po
1094
po-plug-ins/de.po
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,10 @@
|
|||
*.gmo
|
||||
*.mo
|
||||
Makefile
|
||||
Makefile.in
|
||||
Makefile.in.in
|
||||
POTFILES
|
||||
cat-id-tbl.c
|
||||
gimp-script-fu.pot
|
||||
stamp-cat-id
|
||||
messages
|
|
@ -0,0 +1,3 @@
|
|||
Sun Feb 27 20:19:40 CET 2000 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* Initial domain creation
|
|
@ -0,0 +1,7 @@
|
|||
# Files from the Gimp distribution which have already been
|
||||
# marked to allow runtime translation of messages
|
||||
|
||||
plug-ins/script-fu/script-fu-console.c
|
||||
plug-ins/script-fu/script-fu-scripts.c
|
||||
plug-ins/script-fu/script-fu-server.c
|
||||
plug-ins/script-fu/script-fu.c
|
|
@ -0,0 +1,177 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr "Konzole skript-fu"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr "Zavøít"
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr "Výstup SIOD"
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr "Aktuální pøíkaz"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr "Procházet..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr "Nepodaøilo se otevøít výstupní rouru SIOD"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr "Nepodaøilo se otevøít proud na výstupní rouru SIOD"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#, fuzzy
|
||||
msgid "/Script-Fu/"
|
||||
msgstr "Konzole skript-fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, fuzzy, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr "Konzole skript-fu"
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr "Argumenty skriptu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "Skript-fu výbìr barvy"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr "Pøepínaè skriptu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr "Skript-fu výbìr souboru"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr "Skript-fu výbìr vzorku"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr "Skript-fu výbìr pøechodu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr "Skript-fu výbìr stopy"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
#, fuzzy
|
||||
msgid "Reset to Defaults"
|
||||
msgstr " Nastavit na implicitní hodnody "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "O programu"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "Zru¹it"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr "NENÍ URÈENO"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr "Autor:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr "Copyright:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr "Datum:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
msgid "Image Types:"
|
||||
msgstr "Typy obrázku:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr "Výbìr písma Skript-fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "Volby serveru Skript-fu"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr "Port serveru: "
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr "®urnálový soubor serveru: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr "<Toolbox>/Roz¹./Skript-fu/Konzole..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr "<Toolbox>/Roz¹./Skript-fu/Server..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr "<Toolbox>/Roz¹./Skript-fu/Zaktualizovat"
|
|
@ -0,0 +1,178 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr ""
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr ""
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr "Skript-Fu filvalg"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr "Skript-Fu mønstervalg"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr "Skript-Fu gradientvalg"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr "Skript-Fu penselvalg"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "Ok"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "Annullér"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr "IKKE SAT"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr "Forfatter:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
#, fuzzy
|
||||
msgid "Copyright:"
|
||||
msgstr "Ophavsret: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
#, fuzzy
|
||||
msgid "Date:"
|
||||
msgstr "Dato: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
#, fuzzy
|
||||
msgid "Image Types:"
|
||||
msgstr "Billedetyper: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr "Skript-Fu skriftvalg"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "Skript-Fu tjeneralternativer"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr "Tjenerport: "
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr "Tjenerlogfil: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,183 @@
|
|||
# This is the German catalog for GIMP Script-Fu.
|
||||
# Copyright (C) 1999 Free Software Foundation, Inc.
|
||||
# Sven Neumann <sven@gimp.org>
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GIMP 1.1.17\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:19+0100\n"
|
||||
"PO-Revision-Date: 2000-02-27 20:20+0100\n"
|
||||
"Last-Translator: Sven Neumann <sven@gimp.org>\n"
|
||||
"Language-Team: German <de@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=iso-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr "Interaktive Aufrufe sind in Skript-Fu's Konsolen-Modus nicht möglich"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr "Skript-Fu Konsole"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1961
|
||||
msgid "Close"
|
||||
msgstr "Schliessen"
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr "SIOD Ausgabe"
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr "Kommando"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr "Durchsuchen..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr "Kann SIOD-Ausgabe-Pipe nicht öffnen"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr "Kann mit dem SIOD-Ausgabe-pipe keinen Stream erstellen"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr "Skript-Fu's Auswerten-Modus ermöglicht nur nicht-interaktive Aufrufe"
|
||||
|
||||
#. strip the first part of the menupath if it contains _("/Script-Fu/")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr "/Skript-Fu/"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr "Skript-Fu: %s"
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1236
|
||||
msgid "Script Arguments"
|
||||
msgstr "Skript-Argumente"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1300
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "Skript-Fu Farbauswahl"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1306
|
||||
msgid "Script Toggle"
|
||||
msgstr "Skript An/Aus"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1368
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr "Skript-Fu Dateiauswahl"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1400
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr "Skript-Fu Musterauswahl"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1407
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr "Skript-Fu Gradientenauswahl"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1415
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr "Skript-Fu Pinselauswahl"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1440
|
||||
#, fuzzy
|
||||
msgid "Reset to Defaults"
|
||||
msgstr "Auf Standardwerte zurücksetzen"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1466
|
||||
msgid "About"
|
||||
msgstr "Über"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1480
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1489
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1594
|
||||
msgid "NOT SET"
|
||||
msgstr "NICHT EINGESTELLT"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1665
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
"Mindestens eine Schriftart, die Sie ausgewählt haben, ist ungültig.\n"
|
||||
"Bitte überprüfen Sie Ihre Einstellungen.\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1932
|
||||
msgid "Author:"
|
||||
msgstr "Autor:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1938
|
||||
msgid "Copyright:"
|
||||
msgstr "Copyright:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1944
|
||||
msgid "Date:"
|
||||
msgstr "Datum:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1952
|
||||
msgid "Image Types:"
|
||||
msgstr "Bildtypen:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2101
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr "Skript-Fu Schriftartauswahl"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "Skript-Fu Server-Einstellungen"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr "Server Port: "
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr "Server Logdatei: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr "<Toolbox>/Xtns/Skript-Fu/Konsole..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr "<Toolbox>/Xtns/Skript-Fu/Server..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr "Alle Skripte neu einlesen"
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr "<Toolbox>/Xtns/Skript-Fu/Auffrischen"
|
||||
|
||||
#~ msgid "<Toolbox>/Xtns/Script-Fu/Test/Sphere..."
|
||||
#~ msgstr "<Toolbox>/Xtns/Skript-Fu/Test/Kugel..."
|
||||
|
||||
#~ msgid "Shadow"
|
||||
#~ msgstr "Schatten"
|
|
@ -0,0 +1,175 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr ""
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr ""
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "Script-Fu Colour Selection"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
msgid "Image Types:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr ""
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr ""
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,175 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr ""
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr ""
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "Tietoja"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "Peru"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
msgid "Image Types:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr ""
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr ""
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,180 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr "Le mode console pour Script-Fu n'autorise que des appelsinteractifs"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr "Console pour Script-Fu"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr "Sortie SIOD"
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr "Commande courrante"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr "Parcourir..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr "Impossible d'ouvrir le tampon de sortie SIOD"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr "Impossible d'ouvrir un flot sur le tampon de sortie SIOD"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
"Le mode d'évaluation du Script-Fu autorise uniquement un appel noninteractif"
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#, fuzzy
|
||||
msgid "/Script-Fu/"
|
||||
msgstr "Console pour Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, fuzzy, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr "Console pour Script-Fu"
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr "Paramètres du Script"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "Sélection de la Couleur pour le Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr "Sélection du fichier pour le Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr "Sélection des Motif pour le Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr "Sélection des Dégradés pour le Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr "Sélection des brosses pour le Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
#, fuzzy
|
||||
msgid "Reset to Defaults"
|
||||
msgstr " Remettre aux Valeurs par Défaut "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "À propos"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr "NON DÉFINI"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
"Au moins une fonte que vous avez choisie est invalide.\n"
|
||||
"Veuillez vérifier vos paramètres.\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr "Auteur :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr "Copyright :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr "Date :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
msgid "Image Types:"
|
||||
msgstr "Types d'images :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr "Sélection de la police du Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "Options du Serveur du Script-Fu"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr "Port du Serveur"
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr "Fichier de log du serveur :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr "<Boîte à Outils>/Extensions/Script-Fu/Console..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr "<Boîte à Outils>/Extensions/Script-Fu/Serveur..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr "<Toolbox>/Extensions/Script-Fu/Rafraîchir"
|
|
@ -0,0 +1,175 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr ""
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr ""
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
msgid "Image Types:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr ""
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr ""
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,183 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr "Console Script-Fu"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr "SIOD Uscita"
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr "Comando Attuale"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr "Naviga..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#, fuzzy
|
||||
msgid "/Script-Fu/"
|
||||
msgstr "Console Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, fuzzy, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr "Console Script-Fu"
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr "Argomenti dello Script"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
#, fuzzy
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "Script-fu Selezione File"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr "Script-fu Selezione File"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr "Script-fu Selezione Pattern"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr "Script-fu Selezione Gradiente"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr "Script-fu Selezione Pennello"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "Informazioni"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "Cancella"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
#, fuzzy
|
||||
msgid "Author:"
|
||||
msgstr "Autore :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
#, fuzzy
|
||||
msgid "Copyright:"
|
||||
msgstr "Copyright :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
#, fuzzy
|
||||
msgid "Date:"
|
||||
msgstr "Data :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
#, fuzzy
|
||||
msgid "Image Types:"
|
||||
msgstr "Tipi di Immagini: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr "Script-fu Selezione Font"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "Script-fu Opzioni Server"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr "Porta Server: "
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr "Log Server: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
#, fuzzy
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr "Console Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
#, fuzzy
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr "Console Script-Fu"
|
|
@ -0,0 +1,179 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr "Script-Fu コンソールモードはインタラクティブ動作しかしません"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr "Script-Fu コンソール"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr "閉じる"
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr "SIOD 出力"
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr "現在実行しているコマンド"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr "場所を指定..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr "SIOD 出力パイプが開けません"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr "SIOD 出力パイプ上のストリームが開けません"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr "Script-Fu 評価モードは非インタラクティブ動作しかできません"
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#, fuzzy
|
||||
msgid "/Script-Fu/"
|
||||
msgstr "Script-Fu コンソール"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, fuzzy, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr "Script-Fu コンソール"
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr "スクリプト引数"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "Script-Fu 色選択"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr "スクリプト切替え"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr "Script-Fu ファイル選択"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr "Script-Fu パターン選択"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr "Script-Fu グラデーション選択"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr "Script-Fu ブラシ選択"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
#, fuzzy
|
||||
msgid "Reset to Defaults"
|
||||
msgstr " 初期値に戻す "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "このプラグインについて"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "了解"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr "未指定"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
"少なくとも選択したフォント中に一つ以上\n"
|
||||
"不正なものがあります.設定を確認して下さい.\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr "作者:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr "著作権表示:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr "日付:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
msgid "Image Types:"
|
||||
msgstr "画像種:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr "Script-Fu フォント選択"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "Script-Fu サーバオプション"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr "サーバポート: "
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr "サーバログファイル: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr "<Toolbox>/拡張/Script-Fu/コンソール..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr "<Toolbox>/拡張/Script-Fu/サーバ..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr "全てのスクリプトを再読み込み"
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr "<Toolbox>/拡張/Script-Fu/再読み込み"
|
|
@ -0,0 +1,185 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr "Script-Fu 콘솔 모드는 오직 상호작용적 작용에서만 허용됩니다."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr "Script-Fu 콘솔"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr "닫기"
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr "SIOD 출력"
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr "현재 명령"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr "찾아보기..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr "SIOD 출력 파이프를 열수 없습니다."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr "SIOD 출력 파이프에서 스트림을 열수 없습니다."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr "Script-Fu 평가 모드는 오직 상호작용을 하지 않는 작용에서만 가능"
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#, fuzzy
|
||||
msgid "/Script-Fu/"
|
||||
msgstr "Script-Fu 콘솔"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, fuzzy, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr "Script-Fu 콘솔"
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr "스크립트 인수"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
#, fuzzy
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "Script-Fu 파일 셀렉션"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr "스크립트 토글"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr "Script-Fu 파일 셀렉션"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr "Script-Fu 패턴 셀렉션"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr "Script-Fu 색감변화도 셀렉션"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr "Script-Fu 브러쉬 셀렉션"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
#, fuzzy
|
||||
msgid "Reset to Defaults"
|
||||
msgstr " 초기값으로 재설정"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "대하여"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "확인"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr "결정않됨"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
"적어도 당신이 선택한 한 글꼴이 잘못되었다\n"
|
||||
"설정을 검사해보세요\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
#, fuzzy
|
||||
msgid "Author:"
|
||||
msgstr "저자 :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
#, fuzzy
|
||||
msgid "Copyright:"
|
||||
msgstr "저작권 :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
#, fuzzy
|
||||
msgid "Date:"
|
||||
msgstr "날짜 :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
#, fuzzy
|
||||
msgid "Image Types:"
|
||||
msgstr "이미지 유형: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr "Script-Fu 폰트 셀렉션"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "Script-Fu 서버 옵션"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr "서버 포트:"
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr "서버 로그파일:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
#, fuzzy
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr "Script-Fu 콘솔"
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,175 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr ""
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr ""
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
msgid "Image Types:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr ""
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr ""
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,184 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr "Lukk"
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
#, fuzzy
|
||||
msgid "SIOD Output"
|
||||
msgstr "Utskrift"
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
#, fuzzy
|
||||
msgid "Current Command"
|
||||
msgstr "Tiden nå"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
#, fuzzy
|
||||
msgid "Browse..."
|
||||
msgstr "Bla gjennom"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr ""
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
#, fuzzy
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "Alternativer for lagring"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "Ok"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
#, fuzzy
|
||||
msgid "Author:"
|
||||
msgstr "Auto"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
#, fuzzy
|
||||
msgid "Copyright:"
|
||||
msgstr "Ingen lys"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
#, fuzzy
|
||||
msgid "Date:"
|
||||
msgstr "Driver:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
#, fuzzy
|
||||
msgid "Image Types:"
|
||||
msgstr "Bildestørrelse"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
#, fuzzy
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "Alternativer for lagring"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr ""
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,186 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr "Konsola Script-Fu"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr ""
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
#, fuzzy
|
||||
msgid "Current Command"
|
||||
msgstr "Sterownik:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr "Przegl±daj..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#, fuzzy
|
||||
msgid "/Script-Fu/"
|
||||
msgstr "Konsola Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, fuzzy, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr "Konsola Script-Fu"
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "Script-Fu: Selekcja kolorów"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
#, fuzzy
|
||||
msgid "Script Toggle"
|
||||
msgstr "Konsola Script-Fu"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr "Script-Fu: Selekcja plików"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
#, fuzzy
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr "Script-Fu: Selekcja plików"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
#, fuzzy
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr "Script-Fu: Selekcja plików"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
#, fuzzy
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr "Script-Fu: Selekcja kolorów"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "O wtyczce"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr "Autor:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
#, fuzzy
|
||||
msgid "Copyright:"
|
||||
msgstr "Copyright:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
#, fuzzy
|
||||
msgid "Date:"
|
||||
msgstr "Data :"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
#, fuzzy
|
||||
msgid "Image Types:"
|
||||
msgstr "Komentarz"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr "Script-Fu: Selekcja fontów"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "Ustawienia Serwera Script-Fu"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr ""
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
#, fuzzy
|
||||
msgid "Server Logfile: "
|
||||
msgstr "Zapisz plik"
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr "<Toolbox>/Xtns/Script-Fu/Konsola..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr "<Toolbox>/Xtns/Script-Fu/Serwer..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
#, fuzzy
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr "<Toolbox>/Xtns/Script-Fu/Serwer..."
|
|
@ -0,0 +1,183 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr "ëÏÎÓÏÌØ óËÒÉÐÔ-æÕ"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr "úÁËÒÙÔØ"
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr "÷Ù×ÏÄ SIOD"
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr "ôÅËÕÝÁÑ ËÏÍÁÎÄÁ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr "ðÒÏÓÍÏÔÒ..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#, fuzzy
|
||||
msgid "/Script-Fu/"
|
||||
msgstr "ëÏÎÓÏÌØ óËÒÉÐÔ-æÕ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, fuzzy, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr "ëÏÎÓÏÌØ óËÒÉÐÔ-æÕ"
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr "áÒÇÕÍÅÎÔÙ ÓËÒÉÐÔÁ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr "óËÒÉÐÔ-æÕ: ÷ÙÂÏÒ Ã×ÅÔÁ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr "óËÒÉÐÔ-æÕ: ÷ÙÂÏÒ ÆÁÊÌÁ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr "óËÒÉÐÔ-æÕ: ÷ÙÂÏÒ ÛÁÂÌÏÎÁ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr "óËÒÉÐÔ-æÕ: ÷ÙÂÏÒ ÇÒÁÄÉÅÎÔÁ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr "óËÒÉÐÔ-æÕ: ÷ÙÂÏÒ ËÉÓÔÉ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
#, fuzzy
|
||||
msgid "Reset to Defaults"
|
||||
msgstr "óÂÒÏÓÉÔØ × ÉÓÈÏÄÎÏÅ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "ï ÐÒÏÇÒÁÍÍÅ"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "äÁ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "ïÔÍÅÎÁ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr "îå õóôáîï÷ìåîï"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
"ðÏ ËÒÁÊÎÅÊ ÍÅÒÅ ÏÄÉÎ ÉÚ ×ÙÂÒÁÎÎÙÈ ×ÁÍÉ ÛÒÉÆÔÏ× ÎÅÉÓÐÒÁ×ÅÎ.\n"
|
||||
"ðÏÖÁÌÕÊÓÔÁ ÐÒÏ×ÅÒØÔÅ ×ÁÛÉ ÎÁÓÔÒÏÊËÉ.\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr "á×ÔÏÒ:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
#, fuzzy
|
||||
msgid "Copyright:"
|
||||
msgstr "á×ÔÏÒÓËÏÅ ÐÒÁ×Ï: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
#, fuzzy
|
||||
msgid "Date:"
|
||||
msgstr "äÁÔÁ: "
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
#, fuzzy
|
||||
msgid "Image Types:"
|
||||
msgstr "ôÉÐÙ ÉÚÏÂÒÁÖÅÎÉÊ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr "óËÒÉÐÔ-æÕ: ÷ÙÂÏÒ ÛÒÉÆÔÁ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr "óËÒÉÐÔ-æÕ: ðÁÒÁÍÅÔÒÙ ÓÅÒ×ÅÒÁ"
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr "ûÒÉÆÔ ÓÅÒ×ÅÒÁ: "
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr "<Toolbox>/òÁÓÛ./óËÒÉÐÔ-æÕ/ëÏÎÓÏÌØ..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr "<Toolbox>/òÁÓÛ./óËÒÉÐÔ-æÕ/óÅÒ×ÅÒ..."
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
#, fuzzy
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr "<Toolbox>/òÁÓÛ./óËÒÉÐÔ-æÕ/óÅÒ×ÅÒ..."
|
|
@ -0,0 +1,175 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr ""
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr ""
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
msgid "Image Types:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr ""
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr ""
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,176 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr ""
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr ""
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
#, fuzzy
|
||||
msgid "Image Types:"
|
||||
msgstr "magenta"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr ""
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr ""
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,175 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-02-27 20:03+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:157
|
||||
msgid "Script-Fu console mode allows only interactive invocation"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:193
|
||||
msgid "Script-Fu Console"
|
||||
msgstr ""
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-console.c:205
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1957
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. The info vbox
|
||||
#: plug-ins/script-fu/script-fu-console.c:213
|
||||
msgid "SIOD Output"
|
||||
msgstr ""
|
||||
|
||||
#. The current command
|
||||
#: plug-ins/script-fu/script-fu-console.c:290
|
||||
msgid "Current Command"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:311
|
||||
msgid "Browse..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:574
|
||||
msgid "Unable to open SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:578
|
||||
msgid "Unable to open a stream on the SIOD output pipe"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-console.c:625
|
||||
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
|
||||
msgstr ""
|
||||
|
||||
#. strip the first part of the menupath if it says _("Script-Fu")
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1207
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
msgid "/Script-Fu/"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1209
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1211
|
||||
#, c-format
|
||||
msgid "Script-Fu: %s"
|
||||
msgstr ""
|
||||
|
||||
#. the script arguments frame
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1232
|
||||
msgid "Script Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1296
|
||||
msgid "Script-Fu Color Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1302
|
||||
msgid "Script Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1364
|
||||
msgid "Script-Fu File Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1396
|
||||
msgid "Script-fu Pattern Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1403
|
||||
msgid "Script-Fu Gradient Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1411
|
||||
msgid "Script-Fu Brush Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1436
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1462
|
||||
msgid "About"
|
||||
msgstr "ðÒÏ"
|
||||
|
||||
#. Action area
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1476
|
||||
#: plug-ins/script-fu/script-fu-server.c:559
|
||||
msgid "OK"
|
||||
msgstr "çÁÒÁÚÄ"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1485
|
||||
#: plug-ins/script-fu/script-fu-server.c:568
|
||||
msgid "Cancel"
|
||||
msgstr "÷¦ÄÍÏ×Á"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1590
|
||||
msgid "NOT SET"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1661
|
||||
msgid ""
|
||||
"At least one font you've choosen is invalid.\n"
|
||||
"Please check your settings.\n"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1928
|
||||
msgid "Author:"
|
||||
msgstr "á×ÔÏÒ:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1934
|
||||
msgid "Copyright:"
|
||||
msgstr "á×ÔÏÒÓØËÅ ÐÒÁ×Ï:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1940
|
||||
msgid "Date:"
|
||||
msgstr "äÁÔÁ:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:1948
|
||||
msgid "Image Types:"
|
||||
msgstr "ôÉÐÉ ÚÏÂÒÁÖÅÎØ:"
|
||||
|
||||
#: plug-ins/script-fu/script-fu-scripts.c:2097
|
||||
msgid "Script-Fu Font Selection"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu-server.c:551
|
||||
msgid "Script-Fu Server Options"
|
||||
msgstr ""
|
||||
|
||||
#. The server port
|
||||
#: plug-ins/script-fu/script-fu-server.c:582
|
||||
msgid "Server Port: "
|
||||
msgstr ""
|
||||
|
||||
#. The server logfile
|
||||
#: plug-ins/script-fu/script-fu-server.c:595
|
||||
msgid "Server Logfile: "
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:165
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:177
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
|
||||
msgid "Re-read all available scripts"
|
||||
msgstr ""
|
||||
|
||||
#: plug-ins/script-fu/script-fu.c:1012
|
||||
msgid "<Toolbox>/Xtns/Script-Fu/Refresh"
|
||||
msgstr ""
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
xgettext --default-domain=gimp-script-fu --directory=.. \
|
||||
--add-comments --keyword=_ --keyword=N_ \
|
||||
--files-from=./POTFILES.in \
|
||||
&& test ! -f gimp-script-fu.po \
|
||||
|| ( rm -f ./gimp-script-fu.pot \
|
||||
&& mv gimp-script-fu.po ./gimp-script-fu.pot )
|
Loading…
Reference in New Issue