diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-08-28 10:55:08 -0300 |
---|---|---|
committer | Alessio Treglia <quadrispro@ubuntu.com> | 2018-08-28 14:55:08 +0100 |
commit | d07ed0da6c46ffaca7a88c7c7caecd696336d203 (patch) | |
tree | f2e9a1744213ee4bb40999c84a1d91d657eca6b4 /po/ml.po | |
parent | d73d6c58d392dfbd11f5b384ab8c4ee948d2dfb7 (diff) |
Improvements and fixes (#17)0.20
* Get rid of *~ backup files and autom4mate.cache/
It doesn't make sense to keep backup files stored on git.
Update .gitignore accordingly and sort their entries.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Bug reports should be done at the github tree
Not sure why it is listing gnome for bug report. I suspect it
was because it was written originally to be part of Gnome.
Update it to point to upstream's camorama repository at github,
where bugs will likely be better handled.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Add a camorama.appdata.xml
Use the file shipped with Fedora as basis, changing the
screenshots (the link there is broken) and changing the email
of the current maintainer.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* v4l: fix a typo
enqueu -> enqueue
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Rename configure.in to configure.ac
While here, update it according with:
https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* autogen.sh: use a more modern approach
The procedure used there is deprecated. Change it to run
with latest versions of Gtk 2.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Update build system
Run the autogen.sh script to generate again the files that
are created automatically.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Convert it to use the new gettext logic
Since version 0.19.8, gettext doesn't need intltoolize anymore.
Cleanup gettext logic, in order to auto-generate the po/*
files.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Update auto-generated build files
All those files can be generated by running the autogen.sh
script.
Yet, as camorama use to carry those for a while, let's
auto-generate and keep them inside the tree, removing the
obsolete ones and backup files.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* POFILES.in: add missing sources
Several sources are missing at the POFILES.in. Update.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* callbacks: allow translating the fps streaming message
Use gettext to allow translating this message:
"%.2f fps - current %.2f fps - average"
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Auto-translate camera.desktop
Add the needed logic to auto-translate camera.desktop.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Auto-translate camorama.appdata.xml
Add locale translations for camorama.appdata.xml too.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Fix depth on filters and fileio
V4L2 uses depth as bits per pixel, while filters and file io
uses it as bits per byte. Do the conversion.
Fixes a regression on Camorama filters.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* v4l: Better name V4L bits per pixel field
At V4L, the depth for each video format is represented using
bits per pixel. However, at Camorama, the filters use bytes per
pixel instead. That caused a regression during the conversion
to V4L2.
In order to avoid further troubles, let's rename:
cam->depth ===> cam->bpp
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* v4l: make print_cam() useful
There is a debug logic at v4l.c that is not used anywhere.
Also, its output is noisy, as it displays some things that
shouldn't work if not explicitly set.
Print data from it when -D is used, on a useful way, e. g.
by default it will print something like:
Camera Info
-----------
device = /dev/video0, x = 960, y = 720
bits per pixel = 24, desk_depth = 24
capture directory = /home/user/Webcam_Pictures, capture file = Webcam
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Include only gtk.h header
Instead of including header files just for a few widgets used,
include the main one. That's a rule with Gtk 3.
That also allows building it with:
make CFLAGS+="-DGTK_DISABLE_SINGLE_INCLUDES"
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* filter: get rid of a warning due to a missing prototype
filter.c: In function ‘camorama_filters_init’:
filter.c:574:2: warning: implicit declaration of function ‘camorama_filter_reichardt_get_type’; did you mean ‘camorama_filter_invert_get_type’? [-Wimplicit-function-declaration]
camorama_filter_reichardt_get_type();
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
camorama_filter_invert_get_type
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* fileio: use g_thread_new() instead of g_thread_create()
fileio.c:226:9: warning: ‘g_thread_create’ is deprecated: Use 'g_thread_new' instead [-Wdeprecated-declarations]
g_thread_create ((GThreadFunc) save_thread, cam, FALSE, NULL);
^~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/glib.h:108,
from /usr/include/glib-2.0/gobject/gbinding.h:28,
from /usr/include/glib-2.0/glib-object.h:23,
from /usr/include/glib-2.0/gio/gioenums.h:28,
from /usr/include/glib-2.0/gio/giotypes.h:28,
from /usr/include/glib-2.0/gio/gio.h:26,
from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
from /usr/include/gtk-2.0/gdk/gdk.h:32,
from /usr/include/gtk-2.0/gtk/gtk.h:32,
from v4l.h:14,
from fileio.h:1,
from fileio.c:1:
/usr/include/glib-2.0/glib/deprecated/gthread.h:104:10: note: declared here
GThread *g_thread_create (GThreadFunc func,
^~~~~~~~~~~~~~~
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* stop using deprecated gdk_pixbuf_new_from_inline()
Prevents this deprecated warning:
camorama-stock-items.c:18:2: warning: ‘gdk_pixbuf_new_from_inline’ is deprecated [-Wdeprecated-declarations]
GdkPixbuf* buf = gdk_pixbuf_new_from_inline(-1, inline_data, FALSE, NULL);
^~~~~~~~~
In file included from /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h:34,
from /usr/include/gtk-2.0/gdk/gdkpixbuf.h:37,
from /usr/include/gtk-2.0/gdk/gdkcairo.h:28,
from /usr/include/gtk-2.0/gdk/gdk.h:33,
from /usr/include/gtk-2.0/gtk/gtk.h:32,
from camorama-stock-items.c:8:
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h:362:12: note: declared here
GdkPixbuf* gdk_pixbuf_new_from_inline (gint data_length,
^~~~~~~~~~~~~~~~~~~~~~~~~~
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* get rid of deprecated GTK_WIDGET_STATE()
Use gtk_widget_get_state() instead.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Add labels for GNOMEUIINFO_MENU_* items
glade-3 doesn't recognize GNOMEUIINFO_MENU_* stock_item anymore.
So, we need labels.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* camorama.glade: use glade-3 to generate it
It is a way easier to use glade-3 to change the interface.
Now that it doesn't use the obsoleted stock item anymore,
convert it to the format that glade-3 uses.
It will produce one warning, though:
[main_window:bonobodock1:vbox36:hbox25:frame1:da] Object class 'Custom widget' from gtk 2.16 is deprecated
It should be noticed that glade-3 will add a "swapped attribute
to all signals. Those will cause harmless warnings when
camorama runs. In order to avoid, we just need to patch the
file, after using glade-3 with hunks like this:
- <signal name="activate" handler="on_show_effects_activate" swapped="no"/>
+ <signal name="activate" handler="on_show_effects_activate"/>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Replace custom widget by GtkDrawingArea
There's no need to use a custom widget here. Just use a
GtkDrawingArea and simplify the code.
With such change, glade-3 doesn't complain anymore about
the usage of obsolete widgets.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* camorama.glade: get rid of bonobo and GnomeApp
Do some cleanup at camorama.glade in order to make it easier
to convert later to Gtk 3 by removing bonobo-specific and
GnomeApp widget dependencies.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Use GtkStatusbar instead of GnomeAppBar
No need to use the gnome-specific widget. Just use the default
Gtk one. That should make easier when converting this to Gtk 3.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Convert to Gtk Builder
Instead of using libglade, use Gtk Builder. This removes one
dependency from Camorama and makes easier to convert to
Gtk 3.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Instead of gnome, use Gtk to display "about" information
The gnome_about_new() function is deprecated. Convert it to
use the Gtk about dialog instead, and add the license information
to it.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* remove uneded includes from camorama-window.c, v4l.c and fileio.c
Those headers aren't needed there, so remove them.
While here, reorder includes to put into alphabetic order.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* camorama-stock-items: get rid of gnome-specific file location function
The only reason why gnome.h is included here is due to a
function to locate an icon file. On other parts of Camorama,
PACKAGE_DATA_DIR is used, instead, in order o get a pixmap.
So, standardize it, by doing the same way here.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* support: get rid of create_pixbuf()
This function is not used anymore. Get rid of it.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* support: use Gtk dialog instead of the gnome one
There's no good reason to use gnome-specific dialog message
here. So, replace by the equivalent Gtk one.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* fileio: use gio instead of gnomeVFS and support sftp and smb
The gnomeVFS is now obsolete. Replace it by gio.
As a bonus, it now supports also sftp and smb protocols.
While here, remove dead code inside fileio.c.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* fileio: fix a bug preventing timestamp to show on remote file
When storing a remote file, the timestamp was not shown:
Webcam-(null).jpeg
That's because it was doing a sizeof(char *) instead of
sizeof(char[str_len]).
While here, get rid of the unused timenow var inside
remote_save().
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Only validate remote host settings if capture is enabled
It doesn't make any sense to try to map to a remote host
if capture is disabled.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* main: use gtk_init() instead of gnome_program_init()
With that, camorama doesn't need to use libgnomeui-2.0 anymore.
While here, update Gtk check logic to version 2.24, as it is
needed in order to use the GtkComboBox.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Rename data/camorama.glade -> data/camorama.ui
The default extension for Gtk Builder is .ui. Change it
accordingly at the building system.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* main: Wait for filled buffers in read mode
When the driver is on read mode, the driver will return
immediately from read() callback even when the buffer is
not filled. That causes flicker while on read mode. Also,
it displays a non-realistic frame rate.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Use cairo instead of using GdkPixmap
This is another obsolete part of Gtk 2 API. Replace it in favor
of using cairo instead.
While here, remove code duplication, as image display logic
was on 3 different places.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Replace GTK_WIDGET_VISIBLE() with gtk_widget_get_visible()
Replace another Gtk 2 macro that was replaced on Gtk 3.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Replace gtk_object_get_data() with g_object_get_data()
Another function that got replaced on Gtk 3.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Remove unused function/function prototype
Neither lookup_widget nor io_func are used. As both use some
Gtk 2 deprecated functions, get rid of them for good.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Use gtk_container_add() instead of gtk_menu_append()
gtk_menu_append() is deprecated and not available anymore with
Gtk 3. gtk_container_add() works with both versions, so use it
instead.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Don't get window with widget->window directly
Such kind of access is deprecated with Gtk 3. So, use, instead
the function gtk_widget_get_window(), as it works with both
Gtk 2 and Gtk 3.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Use g_foo() variants instead of gtk_foo()
Several functions were deprecated, as GLib defines an equivalent
one, and got removed on Gtk 3. So, use the GLib version.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Add an option to build with Gtk 3 instead of Gtk 2
By default, Camorama will be built against Gtk 2. However,
as it now builds also against Gtk 3, add an option to use
Gtk 3 instead.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Update translation files
Now that the translation files are auto-generated, the
makefile auto-updates them.
That makes a way easier to fix, as editors like poedit
will see the new strings that were added to camorama
along the time.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* pt_BR: Update Brazilian translation
Several messages changed along time. Update their translations.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
* Bump version to 0.20 and update ChangeLog
There were simply too many changes on Camorama. So, bump its
version to 0.20 and reflect latest changes at the ChangeLog.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'po/ml.po')
-rw-r--r-- | po/ml.po | 580 |
1 files changed, 262 insertions, 318 deletions
@@ -6,545 +6,489 @@ msgid "" msgstr "" "Project-Id-Version:camorama.HEAD\n" -"POT-Creation-Date: 2003-06-06 03:48+0200\n" +"Report-Msgid-Bugs-To: https://github.com/alessio/camorama\n" +"POT-Creation-Date: 2018-08-28 07:45-0300\n" "PO-Revision-Date: 2003-07-05 10:29+0530\n" "Last-Translator: FSF-India <locale@gnu.org.in>\n" "Language-Team: Malayalam <locale@gnu.org.in>\n" +"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: data/camorama.glade.h:1 -msgid " " +#: camorama.appdata.xml.in:6 +msgid "Camorama" msgstr "" -#: data/camorama.glade.h:2 -msgid "*" -msgstr "*" - -#: data/camorama.glade.h:3 -msgid "<span weight=\"bold\">Effects</span>" +#: camorama.appdata.xml.in:7 camorama.desktop.in:3 +msgid "Camorama Webcam Viewer" msgstr "" -#: data/camorama.glade.h:4 -msgid "<span weight=\"bold\">General</span>" +#: camorama.appdata.xml.in:9 +msgid "" +"Camorama is a simple webcam viewer, with the ability to apply some video " +"effects." msgstr "" -#: data/camorama.glade.h:5 -msgid "<span weight=\"bold\">Image Type</span>" +#: camorama.desktop.in:4 src/callbacks.c:510 +msgid "View, alter and save images from a webcam" msgstr "" -#: data/camorama.glade.h:6 -msgid "<span weight=\"bold\">Local Capture</span>" +#: camorama.desktop.in:8 +msgid "camorama.png" msgstr "" -#: data/camorama.glade.h:7 -msgid "<span weight=\"bold\">Remote Capture</span>" -msgstr "" +#: data/camorama.ui:35 +msgid "Preferences" +msgstr "മുന്ഗണനകള്" -#: data/camorama.glade.h:8 -msgid "<span weight=\"bold\">Timestamp</span>" +#: data/camorama.ui:107 +msgid "<span weight=\"bold\">General</span>" msgstr "" -#: data/camorama.glade.h:9 -msgid "Add a timestamp to captured images" +#: data/camorama.ui:139 +msgid "Automatic Capture" msgstr "" -#: data/camorama.glade.h:10 -msgid "Append time to filename" +#: data/camorama.ui:161 data/camorama.ui:296 data/camorama.ui:334 +#: data/camorama.ui:517 data/camorama.ui:633 data/camorama.ui:670 +#: data/camorama.ui:905 data/camorama.ui:1021 data/camorama.ui:1058 +msgid " " msgstr "" -#: data/camorama.glade.h:11 -msgid "Automatic Capture" +#: data/camorama.ui:183 +msgid "Capture Interval (in minutes):" msgstr "" -#: data/camorama.glade.h:12 -msgid "Black & white" -msgstr "" +#: data/camorama.ui:257 +msgid "General" +msgstr "സാര്വത്രികമായ" -#: data/camorama.glade.h:13 -msgid "Brightness:" +#: data/camorama.ui:279 +msgid "<span weight=\"bold\">Local Capture</span>" msgstr "" -#: data/camorama.glade.h:14 -msgid "Camorama-libglade" +#: data/camorama.ui:311 +msgid "_Enable local capture" msgstr "" -#: data/camorama.glade.h:15 -msgid "Capture Interval (in minutes):" +#: data/camorama.ui:360 +msgid "_Directory for captured pics:" msgstr "" -#: data/camorama.glade.h:16 -msgid "Color correction" +#: data/camorama.ui:373 +msgid "_Filename for pictures:" msgstr "" -#: data/camorama.glade.h:17 -msgid "Color threshold" +#: data/camorama.ui:388 +msgid "webcam-capture" msgstr "" -#: data/camorama.glade.h:18 -msgid "Colour:" +#: data/camorama.ui:407 +msgid "Select a Directory" msgstr "" -#: data/camorama.glade.h:19 -msgid "Contrast:" +#: data/camorama.ui:424 data/camorama.ui:813 +msgid "Append time to filename" msgstr "" -#: data/camorama.glade.h:20 -msgid "Draw date and time" +#: data/camorama.ui:441 data/camorama.ui:829 +msgid "Add a timestamp to captured images" msgstr "" -#: data/camorama.glade.h:21 -msgid "FTP server: " +#: data/camorama.ui:500 data/camorama.ui:888 +msgid "<span weight=\"bold\">Image Type</span>" msgstr "" -#: data/camorama.glade.h:22 -msgid "Filename" -msgstr "രചനാനാമം" - -#: data/camorama.glade.h:23 -msgid "General" -msgstr "സാര്വത്രികമായ" - -#: data/camorama.glade.h:24 -msgid "Hue:" +#: data/camorama.ui:531 data/camorama.ui:919 +msgid "Save files in jpeg format" msgstr "" -#: data/camorama.glade.h:25 -msgid "Laplace" -msgstr "ലാപ്ളെയിസ്" - -#: data/camorama.glade.h:26 -msgid "Large" -msgstr "വലിയ" +#: data/camorama.ui:548 data/camorama.ui:936 +msgid "Save files in png format" +msgstr "" -#: data/camorama.glade.h:27 +#: data/camorama.ui:593 msgid "Local Capture" msgstr "" -#: data/camorama.glade.h:28 -msgid "Medium" -msgstr "വേഗം" - -#: data/camorama.glade.h:29 -msgid "Mirror image" +#: data/camorama.ui:616 +msgid "<span weight=\"bold\">Remote Capture</span>" msgstr "" -#: data/camorama.glade.h:30 -msgid "Negative" +#: data/camorama.ui:648 +msgid "_Enable remote capture" msgstr "" -#: data/camorama.glade.h:31 -msgid "Password:" -msgstr "അടയാളവാക്ക്:" - -#: data/camorama.glade.h:32 -msgid "Preferences" -msgstr "മുന്ഗണനകള്" +#: data/camorama.ui:696 +msgid "Server:" +msgstr "" -#: data/camorama.glade.h:33 -msgid "Remote Capture" +#: data/camorama.ui:708 +msgid "Type:" msgstr "" -#: data/camorama.glade.h:34 +#: data/camorama.ui:720 msgid "Save directory:" msgstr "" -#: data/camorama.glade.h:35 -msgid "Save files in jpeg format" -msgstr "" +#: data/camorama.ui:732 +#, fuzzy +msgid "Filename:" +msgstr "രചനാനാമം" -#: data/camorama.glade.h:36 -msgid "Save files in png format" +#: data/camorama.ui:745 +msgid "ftp.yourdomain.org" msgstr "" -#: data/camorama.glade.h:37 -msgid "Show Adjustments" +#: data/camorama.ui:790 +msgid "webcamshot" msgstr "" -#: data/camorama.glade.h:38 -msgid "Show Effects" +#: data/camorama.ui:981 +msgid "Remote Capture" msgstr "" -#: data/camorama.glade.h:39 -msgid "Small" -msgstr "ചെറിയ" - -#: data/camorama.glade.h:40 -msgid "Smoothing" +#: data/camorama.ui:1004 +msgid "<span weight=\"bold\">Timestamp</span>" msgstr "" -#: data/camorama.glade.h:41 -msgid "Sobel" +#: data/camorama.ui:1036 +msgid "Use custom string" msgstr "" -#: data/camorama.glade.h:42 +#: data/camorama.ui:1080 msgid "String:" msgstr "" -#: data/camorama.glade.h:43 -msgid "Take Picture" -msgstr "" - -#: data/camorama.glade.h:44 -msgid "Threshold:" +#: data/camorama.ui:1126 +msgid "Draw date and time" msgstr "" -#: data/camorama.glade.h:45 +#: data/camorama.ui:1170 #, fuzzy msgid "Timestamp" msgstr "സമയ മുദ്ര" -#: data/camorama.glade.h:46 -msgid "Use custom string" +#: data/camorama.ui:1199 +msgid "Camorama-libglade" msgstr "" -#: data/camorama.glade.h:47 -msgid "Username:" -msgstr "ഉപയോക്തൃ നാമം:" +#: data/camorama.ui:1216 +#, fuzzy +msgid "_File" +msgstr "രചനാനാമം" -#: data/camorama.glade.h:48 -msgid "Wacky" +#: data/camorama.ui:1223 data/camorama.ui:1523 +msgid "Take Picture" msgstr "" -#: data/camorama.glade.h:49 -msgid "White Balance:" +#: data/camorama.ui:1258 +msgid "_Edit" msgstr "" -#: data/camorama.glade.h:50 -msgid "_Directory for captured pics:" +#: data/camorama.ui:1282 +msgid "_View" msgstr "" -#: data/camorama.glade.h:51 -msgid "_Enable local capture" +#: data/camorama.ui:1291 data/camorama.ui:1464 +msgid "Show Adjustments" msgstr "" -#: data/camorama.glade.h:52 -msgid "_Enable remote capture" +#: data/camorama.ui:1301 +msgid "Show Effects" msgstr "" -#: data/camorama.glade.h:53 -msgid "_Filename for pictures:" -msgstr "" +#: data/camorama.ui:1317 +msgid "Small" +msgstr "ചെറിയ" -#: data/camorama.glade.h:54 -msgid "ftp.yourdomain.org" +#: data/camorama.ui:1330 +msgid "_Help" msgstr "" -#: data/camorama.glade.h:55 -msgid "path/to/save/to" +#: data/camorama.ui:1654 +msgid "Contrast:" msgstr "" -#: data/camorama.glade.h:56 -msgid "webcam-capture" +#: data/camorama.ui:1668 +msgid "Brightness:" msgstr "" -#: data/camorama.glade.h:57 -msgid "webcamshot" +#: data/camorama.ui:1684 +msgid "Color:" msgstr "" -#: data/camorama.glade.h:58 -msgid "your-password" +#: data/camorama.ui:1700 +msgid "Hue:" msgstr "" -#: data/camorama.glade.h:59 -msgid "your-username" +#: data/camorama.ui:1716 +msgid "White Balance:" msgstr "" -#: data/camorama.glade.h:60 -msgid "~/.gnome-desktop" -msgstr "" +#: src/callbacks.c:497 +msgid "translator_credits" +msgstr "എഫ്.എസ്.എഫ് - ഇന്ത്യ <gnu@gnu.org.in>" -#: data/camorama.schemas.in.h:1 -msgid "Append timestamp to filename" +#: src/callbacks.c:706 +#, c-format +msgid "%.2f fps - current %.2f fps - average" msgstr "" -#: data/camorama.schemas.in.h:2 -msgid "Append timestamp to remote filename" +#: src/callbacks.c:826 +#, c-format +msgid "" +"Local Capture: %d\n" +"Remote Capture: %d\n" +"Capture Interval: %d" msgstr "" -#: data/camorama.schemas.in.h:3 -msgid "Appends a timestamp, in UNIX time, to the ends of filenames" +#: src/callbacks.c:835 +msgid "Automatic Capture Disabled" msgstr "" -#: data/camorama.schemas.in.h:4 -msgid "Appends a timestamp, in UNIX time, to the ends of remote filenames" +#: src/camorama-filter-laplace.c:128 +msgid "Laplace (4 Neighbours)" msgstr "" -#: data/camorama.schemas.in.h:5 -msgid "Custom text for the timestamp" +#. TRANSLATORS: This is a noun +#: src/camorama-filter-mirror.c:67 +msgid "Mirror" msgstr "" -#: data/camorama.schemas.in.h:6 -msgid "Defines a string of custom text to be inserted into the image." +#. TRANSLATORS: This is a noun +#: src/camorama-filter-reichardt.c:297 +msgid "Reichardt" msgstr "" -#: data/camorama.schemas.in.h:7 -msgid "Filename for local captures" +#: src/camorama-stock-items.c:11 +msgid "Webcam" msgstr "" -#: data/camorama.schemas.in.h:8 -msgid "Filename for saving captured pictures to locally" +#: src/camorama-window.c:116 +msgid "_Add Filter" msgstr "" -#: data/camorama.schemas.in.h:9 -msgid "Folder for local captures" +#: src/camorama-window.c:210 +msgid "Effects" msgstr "" -#: data/camorama.schemas.in.h:10 -msgid "Folder for remote captures" +#: src/fileio.c:116 src/fileio.c:257 +msgid "Could save temporary image file in /tmp." msgstr "" -#: data/camorama.schemas.in.h:11 -msgid "Folder for saving captured pictures remotely" +#: src/fileio.c:128 +#, c-format +msgid "Unable to create image '%s'." msgstr "" -#: data/camorama.schemas.in.h:12 -msgid "Folder for saving captured pictures to locally" +#: src/fileio.c:136 src/fileio.c:419 +#, c-format +msgid "Could not save image '%s/%s'." msgstr "" -#: data/camorama.schemas.in.h:13 -msgid "Hostname for FTP server" +#: src/fileio.c:174 +#, c-format +msgid "An error occurred mounting %s:%s." msgstr "" -#: data/camorama.schemas.in.h:14 -msgid "Hostname for the FTP server for remote captures." +#: src/fileio.c:211 +#, c-format +msgid "An error occurred accessing %s." msgstr "" -#: data/camorama.schemas.in.h:15 -msgid "Interval for auto-capture" +#: src/fileio.c:265 +#, c-format +msgid "" +"Unable to open temporary image file '%s'.\n" +"Cannot upload image." msgstr "" -#: data/camorama.schemas.in.h:16 -msgid "Local capture image format" +#: src/fileio.c:295 +#, c-format +msgid "An error occurred opening %s." msgstr "" -#: data/camorama.schemas.in.h:17 -msgid "Name for the filename of uploaded images." +#: src/fileio.c:306 +#, c-format +msgid "An error occurred opening %s for write: %s." msgstr "" -#: data/camorama.schemas.in.h:18 -msgid "Password for FTP server" +#: src/fileio.c:317 +#, c-format +msgid "An error occurred writing to %s: %s." msgstr "" -#: data/camorama.schemas.in.h:19 -msgid "Remote capture image format" +#: src/fileio.c:325 +#, c-format +msgid "An error occurred closing %s: %s." msgstr "" -#: data/camorama.schemas.in.h:20 -msgid "Remote save filename" +#: src/fileio.c:393 +#, c-format +msgid "Could not create directory '%s'." msgstr "" -#: data/camorama.schemas.in.h:21 -msgid "Specifies the image format to be used for locally saved pictures" +#: src/fileio.c:404 +#, c-format +msgid "Could not change to directory '%s'." msgstr "" -#: data/camorama.schemas.in.h:22 -msgid "Specifies the image format to be used for remotely saved pictures" +#: src/filter.c:170 +msgid "Color Correction" msgstr "" -#: data/camorama.schemas.in.h:23 -msgid "Specifies the interval for automatic capture of pictures." +#: src/filter.c:195 +msgid "Invert" msgstr "" -#: data/camorama.schemas.in.h:24 -msgid "The password for the FTP account for remote captures." +#: src/filter.c:234 +msgid "Threshold (Overall)" msgstr "" -#: data/camorama.schemas.in.h:25 -msgid "Toggles auto-capture" +#: src/filter.c:276 +msgid "Threshold (Per Channel)" msgstr "" -#: data/camorama.schemas.in.h:26 -msgid "Toggles automatic capturing of pictures." +#: src/filter.c:349 +msgid "Wacky" msgstr "" -#: data/camorama.schemas.in.h:27 -msgid "Toggles local capture" +#: src/filter.c:450 +msgid "Smooth" msgstr "" -#: data/camorama.schemas.in.h:28 -msgid "Toggles remote capture" +#: src/filter.c:481 +msgid "Monochrome" msgstr "" -#: data/camorama.schemas.in.h:29 -msgid "Toggles the custom string" +#: src/filter.c:511 +msgid "Monochrome (Weight)" msgstr "" -#: data/camorama.schemas.in.h:30 -msgid "Toggles the datestamp in captures" +#. TRANSLATORS: http://en.wikipedia.org/wiki/Sobel +#: src/filter.c:563 +msgid "Sobel" msgstr "" -#: data/camorama.schemas.in.h:31 -msgid "Toggles the drawing of a datestamp within the captured pictures" +#: src/main.c:26 +msgid "show version and exit" msgstr "" -#: data/camorama.schemas.in.h:32 -msgid "Toggles the insertion of a timestamp into local images" +#: src/main.c:28 +msgid "v4l device to use" msgstr "" -#: data/camorama.schemas.in.h:33 -msgid "Toggles the insertion of a timestamp into the images for FTP upload." +#: src/main.c:30 +msgid "enable debugging code" msgstr "" -#: data/camorama.schemas.in.h:34 -msgid "Toggles the use of the custom string for the timestamp in images." +#: src/main.c:32 +msgid "capture width" msgstr "" -#: data/camorama.schemas.in.h:35 -msgid "Toggles the use of the sliders to adjust the video properties" +#: src/main.c:34 +msgid "capture height" msgstr "" -#: data/camorama.schemas.in.h:36 -msgid "Toggles the video adjustment sliders" +#: src/main.c:36 +msgid "maximum capture size" msgstr "" -#: data/camorama.schemas.in.h:37 -msgid "Toggles timestamp for local captures" +#: src/main.c:38 +msgid "minimum capture size" msgstr "" -#: data/camorama.schemas.in.h:38 -msgid "Toggles timestamp for remote captures" +#: src/main.c:40 +msgid "middle capture size" msgstr "" -#: data/camorama.schemas.in.h:39 -msgid "Username for FTP server" +#: src/main.c:42 +msgid "use read() rather than mmap()" msgstr "" -#: data/camorama.schemas.in.h:40 -msgid "Username to use for FTP uploads of captured pictures" +#: src/main.c:73 +msgid "camorama" msgstr "" -#: data/camorama.schemas.in.h:41 +#: src/main.c:75 +#, c-format msgid "" -"When capturing pictures via the \"Take Picture\" button, or with auto " -"capture, this key toggles the saving of pictures locally." +"Invalid argument\n" +"Run '%s --help'\n" msgstr "" -#: data/camorama.schemas.in.h:42 +#: src/main.c:89 +#, c-format msgid "" -"When capturing pictures via the \"Take Picture\" button, or with auto " -"capture, this key toggles the saving of pictures to a remote server." -msgstr "" - -#: src/callbacks.c:410 -msgid "translator_credits" -msgstr "എഫ്.എസ്.എഫ് - ഇന്ത്യ <gnu@gnu.org.in>" - -#: src/callbacks.c:425 camorama.desktop.in.h:2 -msgid "View, alter and save images from a webcam" -msgstr "" - -#: src/callbacks.c:524 src/callbacks.c:590 src/callbacks.c:633 -#: src/callbacks.c:645 -msgid "Unable to capture image." +"\n" +"\n" +"Camorama version %s\n" +"\n" msgstr "" -#: src/fileio.c:114 -msgid "Could save temporary image file in /tmp." +#: src/main.c:210 +msgid "Couldn't load builder file" msgstr "" -#: src/fileio.c:129 +#: src/v4l.c:117 src/v4l.c:222 src/v4l.c:303 src/v4l.c:372 src/v4l.c:390 +#: src/v4l.c:410 #, c-format -msgid "Unable to create image '%s'." +msgid "" +"Could not connect to video device (%s).\n" +"Please check connection." msgstr "" -#: src/fileio.c:142 +#: src/v4l.c:438 #, c-format -msgid "Unable to open temporary image file '%s'." +msgid "VIDIOC_REQBUFS -- could not request buffers (%s), exiting...." msgstr "" -#: src/fileio.c:173 +#: src/v4l.c:453 #, c-format -msgid "An error occured opening %s." +msgid "VIDIOC_QUERYBUF -- could not query buffers (%s), exiting...." msgstr "" -#: src/fileio.c:182 +#: src/v4l.c:466 #, c-format -msgid "An error occured writing to %s." +msgid "failed to memory map buffers (%s), exiting...." msgstr "" -#: src/fileio.c:258 +#: src/v4l.c:479 #, c-format -msgid "Could not create directory '%s'." +msgid "VIDIOC_QBUF -- could not enqueue buffers (%s), exiting...." msgstr "" -#: src/fileio.c:266 +#: src/v4l.c:488 #, c-format -msgid "Could not change to directory '%s'." +msgid "failed to start streaming (%s), exiting...." msgstr "" -#: src/fileio.c:279 +#: src/v4l.c:516 #, c-format -msgid "Could not save image '%s/%s'." -msgstr "" - -#: src/main.c:193 -msgid "show version and exit" -msgstr "" - -#: src/main.c:194 -msgid "v4l device to use" -msgstr "" - -#: src/main.c:195 -msgid "enable debuging code" -msgstr "" - -#: src/main.c:196 -msgid "capture width" -msgstr "" - -#: src/main.c:197 -msgid "capture height" -msgstr "" - -#: src/main.c:198 -msgid "maximum capture size" -msgstr "" - -#: src/main.c:199 -msgid "minimum capture size" +msgid "Timeout while waiting for frames (%s)" msgstr "" -#: src/main.c:200 -msgid "middle capture size" -msgstr "" - -#: src/main.c:201 -msgid "use read() rather than mmap()" +#: src/v4l.c:576 +#, c-format +msgid "failed to stop streaming (%s), exiting...." msgstr "" -#: src/main.c:221 -msgid "camorama" -msgstr "" +#~ msgid "Username:" +#~ msgstr "ഉപയോക്തൃ നാമം:" -#: src/main.c:235 -#, c-format -msgid "" -"\n" -"\n" -"Camorama version %s\n" -"\n" -msgstr "" +#~ msgid "Password:" +#~ msgstr "അടയാളവാക്ക്:" -#: src/main.c:350 -msgid "Couldn't find the main interface file (camorama.glade)." -msgstr "" +#~ msgid "*" +#~ msgstr "*" -#: src/v4l.c:83 src/v4l.c:150 src/v4l.c:162 src/v4l.c:186 src/v4l.c:207 -#: src/v4l.c:222 -#, c-format -msgid "" -"Could not connect to video device (%s).\n" -"Please check connection." -msgstr "" +#~ msgid "Laplace" +#~ msgstr "ലാപ്ളെയിസ്" -#: src/support.c:66 -#, c-format -msgid "Couldn't find pixmap file: %s" -msgstr "" +#~ msgid "Large" +#~ msgstr "വലിയ" -#: camorama.desktop.in.h:1 -msgid "Camorama Webcam Viewer" -msgstr "" +#~ msgid "Medium" +#~ msgstr "വേഗം" |