summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2011-09-07 17:28:33 +0200
committerpiernov <piernov@piernov.org>2011-09-07 17:28:33 +0200
commit8ce3b333a32d4a2bacd85523b787e69381381c81 (patch)
tree665275ac8c3df0d57946e87693c03e16e58b396e
parente6723e475648033a284baf8ec0964bba4a228c5a (diff)
downloadgnome3-8ce3b333a32d4a2bacd85523b787e69381381c81.tar.gz
gnome3-8ce3b333a32d4a2bacd85523b787e69381381c81.tar.bz2
gnome3-8ce3b333a32d4a2bacd85523b787e69381381c81.tar.xz
gnome3-8ce3b333a32d4a2bacd85523b787e69381381c81.zip
cheese 3.1.91-1 màj port
-rw-r--r--caribou/import_from_gi.repository.patch293
-rw-r--r--cheese/.footprint.i686649
-rw-r--r--cheese/.footprint.x86_64649
-rw-r--r--cheese/.md5sum.i6862
-rw-r--r--cheese/.md5sum.x86_642
-rw-r--r--cheese/Pkgfile2
-rw-r--r--cheese/post-install8
7 files changed, 979 insertions, 626 deletions
diff --git a/caribou/import_from_gi.repository.patch b/caribou/import_from_gi.repository.patch
deleted file mode 100644
index c9f04f6..0000000
--- a/caribou/import_from_gi.repository.patch
+++ /dev/null
@@ -1,293 +0,0 @@
-From 1857bd953dc02ac781991f0b97b488b4f300b01f Mon Sep 17 00:00:00 2001
-From: Alexandre Rostovtsev <tetromino@gmail.com>
-Date: Tue, 30 Aug 2011 03:05:11 +0000
-Subject: Use GLib, GObject from gi.repository instead of glib, gobject
-
-Use GLib and GObject from gi.repository instead of glib and gobject
-modules for compatibility with pygobject-3.0. Otherwise, when running on
-a system with pygobject-2.0 and pygobject-3.0 installed, caribou-preferences
-fails with
-
-ImportError: could not import gobject (error was: ImportError('When
-using gi.repository you must not import static modules like "gobject".
-Please change all occurrences of "import gobject" to "from gi.repository
-import GObject".',))
-
-https://bugzilla.gnome.org/show_bug.cgi?id=657666
----
-diff --git a/bin/antler-keyboard.in b/bin/antler-keyboard.in
-index 1b0c450..ce64128 100755
---- a/bin/antler-keyboard.in
-+++ b/bin/antler-keyboard.in
-@@ -25,7 +25,7 @@ exec_prefix=@exec_prefix@
-
- if [ $script_dir == "@libexecdir@" ]
- then
-- datadir="$(@PYTHON@ -c "import glib; print ':'.join(glib.get_system_data_dirs())")"
-+ datadir="$(@PYTHON@ -c "from gi.repository import GLib; print ':'.join(GLib.get_system_data_dirs())")"
- export PYTHONPATH="${prefix}/lib/python@PYTHON_VERSION@/site-packages${PYTHONPATH:+:$PYTHONPATH}"
- export GI_TYPELIB_PATH="@libdir@/girepository-1.0${GI_TYPELIB_PATH:+:$GI_TYPELIB_PATH}"
- export LD_LIBRARY_PATH="@libdir@${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
-diff --git a/bin/caribou-preferences.in b/bin/caribou-preferences.in
-index 6aae29e..57772e7 100755
---- a/bin/caribou-preferences.in
-+++ b/bin/caribou-preferences.in
-@@ -25,7 +25,7 @@ exec_prefix=@exec_prefix@
-
- if [ $script_dir == "@bindir@" ]
- then
-- datadir="$(@PYTHON@ -c "import glib; print ':'.join(glib.get_system_data_dirs())")"
-+ datadir="$(@PYTHON@ -c "from gi.repository import GLib; print ':'.join(GLib.get_system_data_dirs())")"
- export PYTHONPATH="@prefix@/lib/python@PYTHON_VERSION@/site-packages${PYTHONPATH:+:$PYTHONPATH}"
- export GI_TYPELIB_PATH="@libdir@/girepository-1.0${GI_TYPELIB_PATH:+:$GI_TYPELIB_PATH}"
- export LD_LIBRARY_PATH="@libdir@${LD_LIBRARY_PATH:+:LD_LIBRARY_PATH}"
-diff --git a/caribou/antler/keyboard_view.py b/caribou/antler/keyboard_view.py
-index 3e09d94..350be91 100644
---- a/caribou/antler/keyboard_view.py
-+++ b/caribou/antler/keyboard_view.py
-@@ -3,9 +3,9 @@ from caribou.settings import CaribouSettings
- from antler_settings import AntlerSettings
- from gi.repository import Gtk
- from gi.repository import Gdk
-+from gi.repository import GObject
-+from gi.repository import GLib
- from gi.repository import Caribou
--import gobject
--import glib
- import os
- from math import ceil
-
-@@ -30,7 +30,7 @@ PRETTY_LABELS = {
-
- class AntlerKey(Gtk.Button):
- def __init__(self, key, spacing=0):
-- gobject.GObject.__init__(self)
-+ GObject.GObject.__init__(self)
- self.caribou_key = key.weak_ref()
- self.set_label(self._get_key_label())
- self._spacing = spacing
-@@ -71,7 +71,7 @@ class AntlerKey(Gtk.Button):
- if not unichar.isspace() and unichar != u'\x00':
- label = unichar
-
-- return "<b>%s</b>" % glib.markup_escape_text(label.encode('utf-8'))
-+ return "<b>%s</b>" % GLib.markup_escape_text(label.encode('utf-8'))
-
- def _caribou_key_pressed (self, key, _key):
- self.set_state_flags(Gtk.StateFlags.ACTIVE, False)
-@@ -106,7 +106,7 @@ class AntlerKey(Gtk.Button):
-
- class AntlerSubLevel(Gtk.Window):
- def __init__(self, key):
-- gobject.GObject.__init__(self, type=Gtk.WindowType.POPUP)
-+ GObject.GObject.__init__(self, type=Gtk.WindowType.POPUP)
-
- self.set_decorated(False)
- self.set_resizable(False)
-@@ -138,7 +138,7 @@ class AntlerLayout(Gtk.Box):
- KEY_SPAN = 4
-
- def __init__(self, level=None, spacing=6):
-- gobject.GObject.__init__(self, orientation=Gtk.Orientation.HORIZONTAL)
-+ GObject.GObject.__init__(self, orientation=Gtk.Orientation.HORIZONTAL)
- self.set_spacing(12)
- self._columns = []
- self._keys_map = {}
-@@ -243,7 +243,7 @@ class AntlerLayout(Gtk.Box):
-
- class AntlerKeyboardView(Gtk.Notebook):
- def __init__(self, keyboard_type):
-- gobject.GObject.__init__(self)
-+ GObject.GObject.__init__(self)
- settings = AntlerSettings()
- self.set_show_tabs(False)
-
-@@ -253,7 +253,7 @@ class AntlerKeyboardView(Gtk.Notebook):
- self._app_css_provider = Gtk.CssProvider()
- self._load_style(
- self._app_css_provider, "style.css",
-- [glib.get_user_data_dir()] + list(glib.get_system_data_dirs()))
-+ [GLib.get_user_data_dir()] + list(GLib.get_system_data_dirs()))
-
- if not use_system.value:
- Gtk.StyleContext.add_provider_for_screen(
-@@ -262,7 +262,7 @@ class AntlerKeyboardView(Gtk.Notebook):
-
- self._user_css_provider = Gtk.CssProvider()
- self._load_style(self._user_css_provider, "user-style.css",
-- [glib.get_user_data_dir()])
-+ [GLib.get_user_data_dir()])
- Gtk.StyleContext.add_provider_for_screen(
- Gdk.Screen.get_default(), self._user_css_provider,
- Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION + 1)
-diff --git a/caribou/antler/main.py b/caribou/antler/main.py
-index 6bd3932..fab1c60 100644
---- a/caribou/antler/main.py
-+++ b/caribou/antler/main.py
-@@ -1,17 +1,16 @@
--from gi.repository import Caribou
-+from gi.repository import Caribou, GObject
- from window import AntlerWindowEntry
- from keyboard_view import AntlerKeyboardView
--import gobject
- import sys
-
- class AntlerKeyboardService(Caribou.KeyboardService):
- def __init__(self):
-- gobject.GObject.__init__(self)
-+ GObject.GObject.__init__(self)
- self.register_keyboard("Antler")
- self.window = AntlerWindowEntry(AntlerKeyboardView)
-
- def run(self):
-- loop = gobject.MainLoop()
-+ loop = GObject.MainLoop()
- loop.run()
-
- def do_show(self, timestamp):
-diff --git a/caribou/antler/window.py b/caribou/antler/window.py
-index a72203e..f7c5fa5 100644
---- a/caribou/antler/window.py
-+++ b/caribou/antler/window.py
-@@ -22,24 +22,24 @@
-
- from gi.repository import Gtk
- from gi.repository import Gdk
-+from gi.repository import GObject
- from gi.repository import Clutter
- from antler_settings import AntlerSettings
- from math import sqrt
- import os
- import sys
--import gobject
-
- Clutter.init("antler")
-
-
- class AnimatedWindowBase(Gtk.Window, Clutter.Animatable):
- __gproperties__ = {
-- 'antler-window-position' : (gobject.TYPE_PYOBJECT, 'Window position',
-+ 'antler-window-position' : (GObject.TYPE_PYOBJECT, 'Window position',
- 'Window position in X, Y coordinates',
-- gobject.PARAM_READWRITE)
-+ GObject.PARAM_READWRITE)
- }
- def __init__(self):
-- gobject.GObject.__init__(self, type=Gtk.WindowType.POPUP)
-+ GObject.GObject.__init__(self, type=Gtk.WindowType.POPUP)
- # animation
- self._stage = Clutter.Stage.get_default()
- self._move_animation = None
-@@ -71,7 +71,7 @@ class AnimatedWindowBase(Gtk.Window, Clutter.Animatable):
- return True
- if prop_name == "opacity":
- opacity = initial_value + ((final_value - initial_value) * progress)
-- gobject.idle_add(lambda: self.set_opacity(opacity))
-+ GObject.idle_add(lambda: self.set_opacity(opacity))
-
- return True
- else:
-@@ -132,9 +132,9 @@ class ProximityWindowBase(AnimatedWindowBase):
- self.min_alpha = min_alpha
- if self.max_alpha != self.min_alpha:
- if self._poll_tid == 0:
-- self._poll_tid = gobject.timeout_add(100, self._proximity_check)
-+ self._poll_tid = GObject.timeout_add(100, self._proximity_check)
- elif self._poll_tid != 0:
-- gobject.source_remove(self._poll_tid)
-+ GObject.source_remove(self._poll_tid)
-
- def _onmapped(self, obj, event, settings):
- if self.is_composited():
-diff --git a/caribou/settings/preferences_window.py b/caribou/settings/preferences_window.py
-index 55f9fca..541ecb5 100644
---- a/caribou/settings/preferences_window.py
-+++ b/caribou/settings/preferences_window.py
-@@ -20,7 +20,7 @@
-
- from caribou.settings.setting_types import *
-
--import gobject
-+from gi.repository import GObject
- from gi.repository import Gdk
- from gi.repository import Gtk
-
-@@ -230,7 +230,7 @@ class PreferencesDialog(Gtk.Dialog, AbstractPreferencesUI):
- __gtype_name__ = "PreferencesDialog"
-
- def __init__(self, settings_manager):
-- gobject.GObject.__init__(self)
-+ GObject.GObject.__init__(self)
- self.add_button(Gtk.STOCK_CLOSE, Gtk.ResponseType.CLOSE)
- self.set_border_width(6)
- self.set_title(settings_manager.groups.label)
-@@ -243,7 +243,7 @@ class PreferencesWindow(Gtk.Window, AbstractPreferencesUI):
- __gtype_name__ = "PreferencesWindow"
-
- def __init__(self, settings_manager):
-- gobject.GObject.__init__(self)
-+ GObject.GObject.__init__(self)
- self.set_border_width(6)
- self.set_title(settings_manager.groups.label)
-
-diff --git a/caribou/settings/setting_types.py b/caribou/settings/setting_types.py
-index 66fb0f0..c4af2a6 100644
---- a/caribou/settings/setting_types.py
-+++ b/caribou/settings/setting_types.py
-@@ -1,5 +1,4 @@
--import gobject
--from gi.repository import GLib
-+from gi.repository import GLib, GObject
-
- ENTRY_DEFAULT=0
- ENTRY_COMBO=1
-@@ -10,17 +9,17 @@ ENTRY_SLIDER=5
- ENTRY_CHECKBOX=6
- ENTRY_RADIO=7
-
--class Setting(gobject.GObject):
-+class Setting(GObject.GObject):
- __gsignals__ = {'value-changed' :
-- (gobject.SIGNAL_RUN_FIRST,
-- gobject.TYPE_NONE,
-- (gobject.TYPE_PYOBJECT,)),
-+ (GObject.SIGNAL_RUN_FIRST,
-+ GObject.TYPE_NONE,
-+ (GObject.TYPE_PYOBJECT,)),
- 'sensitivity-changed' :
-- (gobject.SIGNAL_RUN_FIRST,
-- gobject.TYPE_NONE,
-- (gobject.TYPE_BOOLEAN,))}
-+ (GObject.SIGNAL_RUN_FIRST,
-+ GObject.TYPE_NONE,
-+ (GObject.TYPE_BOOLEAN,))}
- def __init__(self, name, label, children=[]):
-- gobject.GObject.__init__(self)
-+ GObject.GObject.__init__(self)
- self.name = name
- self.label = label
- self.children = children
-@@ -129,8 +128,8 @@ class IntegerSetting(ValueSetting):
- variant_type = 'i'
- entry_type = ENTRY_SPIN
- def __init__(self, *args, **kwargs):
-- self.min = kwargs.pop('min', gobject.G_MININT)
-- self.max = kwargs.pop('max', gobject.G_MAXINT)
-+ self.min = kwargs.pop('min', GObject.G_MININT)
-+ self.max = kwargs.pop('max', GObject.G_MAXINT)
- ValueSetting.__init__(self, *args, **kwargs)
-
- def convert_value(self, val):
-@@ -140,8 +139,8 @@ class FloatSetting(ValueSetting):
- variant_type = 'd'
- entry_type = ENTRY_SPIN
- def __init__(self, *args, **kwargs):
-- self.min = kwargs.pop('min', gobject.G_MINFLOAT)
-- self.max = kwargs.pop('max', gobject.G_MAXFLOAT)
-+ self.min = kwargs.pop('min', GObject.G_MINFLOAT)
-+ self.max = kwargs.pop('max', GObject.G_MAXFLOAT)
- ValueSetting.__init__(self, *args, **kwargs)
-
- def convert_value(self, val):
---
-cgit v0.9.0.2
diff --git a/cheese/.footprint.i686 b/cheese/.footprint.i686
index d730cae..a901763 100644
--- a/cheese/.footprint.i686
+++ b/cheese/.footprint.i686
@@ -14,14 +14,14 @@ drwxr-xr-x root/root usr/lib/girepository-1.0/
-rw-r--r-- root/root usr/lib/girepository-1.0/Cheese-3.0.typelib
-rw-r--r-- root/root usr/lib/libcheese-gtk.a
-rwxr-xr-x root/root usr/lib/libcheese-gtk.la
-lrwxrwxrwx root/root usr/lib/libcheese-gtk.so -> libcheese-gtk.so.20.0.1
-lrwxrwxrwx root/root usr/lib/libcheese-gtk.so.20 -> libcheese-gtk.so.20.0.1
--rwxr-xr-x root/root usr/lib/libcheese-gtk.so.20.0.1
+lrwxrwxrwx root/root usr/lib/libcheese-gtk.so -> libcheese-gtk.so.19.0.3
+lrwxrwxrwx root/root usr/lib/libcheese-gtk.so.19 -> libcheese-gtk.so.19.0.3
+-rwxr-xr-x root/root usr/lib/libcheese-gtk.so.19.0.3
-rw-r--r-- root/root usr/lib/libcheese.a
-rwxr-xr-x root/root usr/lib/libcheese.la
-lrwxrwxrwx root/root usr/lib/libcheese.so -> libcheese.so.1.0.1
-lrwxrwxrwx root/root usr/lib/libcheese.so.1 -> libcheese.so.1.0.1
--rwxr-xr-x root/root usr/lib/libcheese.so.1.0.1
+lrwxrwxrwx root/root usr/lib/libcheese.so -> libcheese.so.0.0.3
+lrwxrwxrwx root/root usr/lib/libcheese.so.0 -> libcheese.so.0.0.3
+-rwxr-xr-x root/root usr/lib/libcheese.so.0.0.3
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/cheese-gtk.pc
-rw-r--r-- root/root usr/lib/pkgconfig/cheese.pc
@@ -82,177 +82,525 @@ drwxr-xr-x root/root usr/share/gnome/
drwxr-xr-x root/root usr/share/gnome/help/
drwxr-xr-x root/root usr/share/gnome/help/cheese/
drwxr-xr-x root/root usr/share/gnome/help/cheese/C/
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/C/figures/
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-effects.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-fullscreen.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-preferences.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-wide.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/legal.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-delete.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-effects.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-introduction.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-record.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-save.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-take.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/effects.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/image-properties.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/ca/
--rw-r--r-- root/root usr/share/gnome/help/cheese/ca/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/ca/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/cs/
--rw-r--r-- root/root usr/share/gnome/help/cheese/cs/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/cs/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/de/
--rw-r--r-- root/root usr/share/gnome/help/cheese/de/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/de/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/de/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/de/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/el/
--rw-r--r-- root/root usr/share/gnome/help/cheese/el/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/el/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/en_GB/
--rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/en_GB/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/es/
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/es/figures/
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-effects.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-fullscreen.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/fi/
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/fi/figures/
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-effects.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-fullscreen.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/fr/
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/fr/figures/
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-effects.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-fullscreen.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-preferences.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/it/
--rw-r--r-- root/root usr/share/gnome/help/cheese/it/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/it/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/wide-mode.page
+drwxr-xr-x root/root usr/share/gnome/help/cheese/ko/
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/disable-flash.page
+drwxr-xr-x root/root usr/share/gnome/help/cheese/ko/figures/
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/nl/
--rw-r--r-- root/root usr/share/gnome/help/cheese/nl/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/nl/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/oc/
--rw-r--r-- root/root usr/share/gnome/help/cheese/oc/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/oc/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/pa/
--rw-r--r-- root/root usr/share/gnome/help/cheese/pa/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/pa/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/pt_BR/
--rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/pt_BR/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/ru/
--rw-r--r-- root/root usr/share/gnome/help/cheese/ru/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/ru/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/sl/
--rw-r--r-- root/root usr/share/gnome/help/cheese/sl/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/sl/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/sv/
--rw-r--r-- root/root usr/share/gnome/help/cheese/sv/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/sv/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/th/
--rw-r--r-- root/root usr/share/gnome/help/cheese/th/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/th/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/zh_CN/
--rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/zh_CN/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/wide-mode.page
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/16x16/
@@ -280,24 +628,3 @@ drwxr-xr-x root/root usr/share/locale/
drwxr-xr-x root/root usr/share/locale/fr/
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/cheese.mo
-drwxr-xr-x root/root usr/share/omf/
-drwxr-xr-x root/root usr/share/omf/cheese/
--rw-r--r-- root/root usr/share/omf/cheese/cheese-C.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-ca.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-cs.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-de.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-el.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-en_GB.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-es.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-fi.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-fr.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-it.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-nl.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-oc.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-pa.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-pt_BR.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-ru.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-sl.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-sv.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-th.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-zh_CN.omf
diff --git a/cheese/.footprint.x86_64 b/cheese/.footprint.x86_64
index d730cae..a901763 100644
--- a/cheese/.footprint.x86_64
+++ b/cheese/.footprint.x86_64
@@ -14,14 +14,14 @@ drwxr-xr-x root/root usr/lib/girepository-1.0/
-rw-r--r-- root/root usr/lib/girepository-1.0/Cheese-3.0.typelib
-rw-r--r-- root/root usr/lib/libcheese-gtk.a
-rwxr-xr-x root/root usr/lib/libcheese-gtk.la
-lrwxrwxrwx root/root usr/lib/libcheese-gtk.so -> libcheese-gtk.so.20.0.1
-lrwxrwxrwx root/root usr/lib/libcheese-gtk.so.20 -> libcheese-gtk.so.20.0.1
--rwxr-xr-x root/root usr/lib/libcheese-gtk.so.20.0.1
+lrwxrwxrwx root/root usr/lib/libcheese-gtk.so -> libcheese-gtk.so.19.0.3
+lrwxrwxrwx root/root usr/lib/libcheese-gtk.so.19 -> libcheese-gtk.so.19.0.3
+-rwxr-xr-x root/root usr/lib/libcheese-gtk.so.19.0.3
-rw-r--r-- root/root usr/lib/libcheese.a
-rwxr-xr-x root/root usr/lib/libcheese.la
-lrwxrwxrwx root/root usr/lib/libcheese.so -> libcheese.so.1.0.1
-lrwxrwxrwx root/root usr/lib/libcheese.so.1 -> libcheese.so.1.0.1
--rwxr-xr-x root/root usr/lib/libcheese.so.1.0.1
+lrwxrwxrwx root/root usr/lib/libcheese.so -> libcheese.so.0.0.3
+lrwxrwxrwx root/root usr/lib/libcheese.so.0 -> libcheese.so.0.0.3
+-rwxr-xr-x root/root usr/lib/libcheese.so.0.0.3
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/cheese-gtk.pc
-rw-r--r-- root/root usr/lib/pkgconfig/cheese.pc
@@ -82,177 +82,525 @@ drwxr-xr-x root/root usr/share/gnome/
drwxr-xr-x root/root usr/share/gnome/help/
drwxr-xr-x root/root usr/share/gnome/help/cheese/
drwxr-xr-x root/root usr/share/gnome/help/cheese/C/
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/C/figures/
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-effects.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-fullscreen.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-preferences.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-wide.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/C/legal.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-delete.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-effects.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-introduction.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-record.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-save.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese-take.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/cheese.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/effects.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/image-properties.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/C/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/ca/
--rw-r--r-- root/root usr/share/gnome/help/cheese/ca/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/ca/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ca/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ca/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/cs/
--rw-r--r-- root/root usr/share/gnome/help/cheese/cs/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/cs/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/cs/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/cs/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/de/
--rw-r--r-- root/root usr/share/gnome/help/cheese/de/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/de/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/de/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/de/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/de/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/de/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/el/
--rw-r--r-- root/root usr/share/gnome/help/cheese/el/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/el/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/el/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/el/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/en_GB/
--rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/en_GB/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/en_GB/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/en_GB/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/es/
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/es/figures/
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-effects.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-fullscreen.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/es/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/es/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/es/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/fi/
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/fi/figures/
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-effects.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-fullscreen.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fi/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fi/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fi/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/fr/
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/fr/figures/
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-effects.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-fullscreen.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-main.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-preferences.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-share.jpg
--rw-r--r-- root/root usr/share/gnome/help/cheese/fr/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/fr/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/fr/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/it/
--rw-r--r-- root/root usr/share/gnome/help/cheese/it/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/it/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/it/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/it/wide-mode.page
+drwxr-xr-x root/root usr/share/gnome/help/cheese/ko/
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/disable-flash.page
+drwxr-xr-x root/root usr/share/gnome/help/cheese/ko/figures/
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ko/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ko/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/nl/
--rw-r--r-- root/root usr/share/gnome/help/cheese/nl/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/nl/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/nl/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/nl/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/oc/
--rw-r--r-- root/root usr/share/gnome/help/cheese/oc/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/oc/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/oc/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/oc/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/pa/
--rw-r--r-- root/root usr/share/gnome/help/cheese/pa/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/pa/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pa/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pa/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/pt_BR/
--rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/pt_BR/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/pt_BR/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/pt_BR/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/ru/
--rw-r--r-- root/root usr/share/gnome/help/cheese/ru/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/ru/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/ru/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/ru/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/sl/
--rw-r--r-- root/root usr/share/gnome/help/cheese/sl/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/sl/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sl/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sl/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/sv/
--rw-r--r-- root/root usr/share/gnome/help/cheese/sv/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/sv/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/sv/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/sv/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/th/
--rw-r--r-- root/root usr/share/gnome/help/cheese/th/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/th/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/th/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/th/wide-mode.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/zh_CN/
--rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/cheese.xml
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/apply-effects.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/burst-mode.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/delete-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/disable-countdown.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/disable-flash.page
drwxr-xr-x root/root usr/share/gnome/help/cheese/zh_CN/figures/
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-effects.jpg -> ../../C/figures/cheese-effects.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-fullscreen.jpg -> ../../C/figures/cheese-fullscreen.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-main.jpg -> ../../C/figures/cheese-main.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-preferences.jpg -> ../../C/figures/cheese-preferences.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-share.jpg -> ../../C/figures/cheese-share.jpg
-lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-wide.jpg -> ../../C/figures/cheese-wide.jpg
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-delete.png -> ../../C/figures/cheese-delete.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-effects.png -> ../../C/figures/cheese-effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-introduction.png -> ../../C/figures/cheese-introduction.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-record.png -> ../../C/figures/cheese-record.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-save.png -> ../../C/figures/cheese-save.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese-take.png -> ../../C/figures/cheese-take.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/cheese.png -> ../../C/figures/cheese.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/effects.png -> ../../C/figures/effects.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/image-properties.png -> ../../C/figures/image-properties.png
+lrwxrwxrwx root/root usr/share/gnome/help/cheese/zh_CN/figures/settings.png -> ../../C/figures/settings.png
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/image-properties.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/index.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/introduction.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/record-video.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/resolution-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/save-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/take-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/view-photo.page
+-rw-r--r-- root/root usr/share/gnome/help/cheese/zh_CN/wide-mode.page
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/16x16/
@@ -280,24 +628,3 @@ drwxr-xr-x root/root usr/share/locale/
drwxr-xr-x root/root usr/share/locale/fr/
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/cheese.mo
-drwxr-xr-x root/root usr/share/omf/
-drwxr-xr-x root/root usr/share/omf/cheese/
--rw-r--r-- root/root usr/share/omf/cheese/cheese-C.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-ca.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-cs.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-de.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-el.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-en_GB.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-es.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-fi.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-fr.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-it.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-nl.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-oc.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-pa.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-pt_BR.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-ru.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-sl.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-sv.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-th.omf
--rw-r--r-- root/root usr/share/omf/cheese/cheese-zh_CN.omf
diff --git a/cheese/.md5sum.i686 b/cheese/.md5sum.i686
index b679b11..e950f25 100644
--- a/cheese/.md5sum.i686
+++ b/cheese/.md5sum.i686
@@ -1 +1 @@
-e60460a610545693e9f985c61d80261d cheese-3.0.2.tar.xz
+5892946476a99b8af368540d5e6d344b cheese-3.1.91.tar.xz
diff --git a/cheese/.md5sum.x86_64 b/cheese/.md5sum.x86_64
index b679b11..e950f25 100644
--- a/cheese/.md5sum.x86_64
+++ b/cheese/.md5sum.x86_64
@@ -1 +1 @@
-e60460a610545693e9f985c61d80261d cheese-3.0.2.tar.xz
+5892946476a99b8af368540d5e6d344b cheese-3.1.91.tar.xz
diff --git a/cheese/Pkgfile b/cheese/Pkgfile
index 2e6090c..a06e0f8 100644
--- a/cheese/Pkgfile
+++ b/cheese/Pkgfile
@@ -6,7 +6,7 @@
# Run on: glib,gtk,libgnomeui,libcanberra,hal,cairo,evolution-data-server,gst-plugins-good,gconf,librsvg,gnome-desktop,clutter-gst,mx,libgee,gnome-video-effects
name=cheese
-version=3.0.2
+version=3.1.91
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
diff --git a/cheese/post-install b/cheese/post-install
index 37f17c6..84e9537 100644
--- a/cheese/post-install
+++ b/cheese/post-install
@@ -8,14 +8,6 @@ glib-compile-schemas /usr/share/glib-2.0/schemas
# icon cache
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-# scrolls
-SCROLLS="`pkginfo -l $port | grep usr/share/omf/.*\.omf$`"
-
-for SCROLL in $SCROLLS
-do
- scrollkeeper-install -q -p /var/lib/scrollkeeper /$SCROLL > /dev/null
-done
-
# desktop database
update-desktop-database > /dev/null