summaryrefslogtreecommitdiff
path: root/help/C
diff options
context:
space:
mode:
Diffstat (limited to 'help/C')
-rw-r--r--help/C/.cvsignore4
-rwxr-xr-xhelp/C/l10n.txt88
-rwxr-xr-xhelp/C/l10n_scripts/calendar.sh10
-rwxr-xr-xhelp/C/l10n_scripts/cvs.txt51
-rwxr-xr-xhelp/C/l10n_scripts/error.sh4
-rwxr-xr-xhelp/C/l10n_scripts/filesel.sh13
-rwxr-xr-xhelp/C/l10n_scripts/info.sh4
-rwxr-xr-xhelp/C/l10n_scripts/list.sh8
-rwxr-xr-xhelp/C/l10n_scripts/notification.sh5
-rwxr-xr-xhelp/C/l10n_scripts/progress.sh18
-rwxr-xr-xhelp/C/l10n_scripts/question.sh4
-rwxr-xr-xhelp/C/l10n_scripts/text_entry.sh11
-rwxr-xr-xhelp/C/l10n_scripts/text_info.sh17
-rwxr-xr-xhelp/C/l10n_scripts/warning.sh4
14 files changed, 0 insertions, 241 deletions
diff --git a/help/C/.cvsignore b/help/C/.cvsignore
deleted file mode 100644
index 66e859f9..00000000
--- a/help/C/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile
-Makefile.in
-omf_timestamp
-zenity-C.omf.out
diff --git a/help/C/l10n.txt b/help/C/l10n.txt
deleted file mode 100755
index f03a73fe..00000000
--- a/help/C/l10n.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-Zenity Manual V2.0
-
-------------------------
-SUMMARY OF CHANGES
-------------------------
-
-Created by: Breda McColgan
-Date: July 2004
-Manual version: 2.0
-
-------------------------
-SCREENSHOT INSTRUCTIONS
-------------------------
-
-To create the screenshots, perform the following steps:
-1. Create a directory called /tmp/l10n_scripts.
-2. Copy the scripts to the /tmp/l10n_scripts directory.
-3. Edit the appropriate script (see below)
- to replace the English text with the localised text, where applicable.
-4. Ensure that all scripts are executable.
- If necessary, run the following command:
- chmod +x <script-name>
-5. Run the script from the /tmp/l10n_scripts directory, as follows:
- cd /tmp/l10n_scripts
- . ./<script-name>
-
-
-zenity-calendar-screenshot.png
-==============================
-
-<script-name> = calendar.sh
-
-
-zenity-entry-screenshot.png
-===========================
-
-<script-name> = text_entry.sh
-
-
-
-zenity-error-screenshot.png
-===========================
-
-<script-name> = error.sh
-
-
-zenity-fileselection-screenshot.png
-===================================
-
-<script-name> = file_sel.sh
-
-
-zenity-information-screenshot.png
-=================================
-
-<script-name> = info.sh
-
-
-zenity-list-screenshot.png
-==========================
-
-<script-name> = list.sh
-
-
-zenity-progress-screenshot.png
-==============================
-
-<script-name> = progress.sh
-
-
-zenity-question-screenshot.png
-==============================
-
-<script-name> = question.sh
-
-
-zenity-text-screenshot.png
-==========================
-
-<script-name> = text_info.sh
-Select cvs.txt from the File Selector dialog.
-Resize the window so that only the text appears -- no blank space.
-
-
-zenity-warning-screenshot.png
-=============================
-
-<script-name> = warning.sh
diff --git a/help/C/l10n_scripts/calendar.sh b/help/C/l10n_scripts/calendar.sh
deleted file mode 100755
index cf0f45e3..00000000
--- a/help/C/l10n_scripts/calendar.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
- if zenity --calendar \
- --title="Select a Date" \
- --text="Click on a date to select that date." \
- --day=10 --month=8 --year=2004
- then echo $?
- else echo "No date selected"
- fi
-
diff --git a/help/C/l10n_scripts/cvs.txt b/help/C/l10n_scripts/cvs.txt
deleted file mode 100755
index f470f666..00000000
--- a/help/C/l10n_scripts/cvs.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-Getting the most out of CVS in GNOME
-====================================
-
-Introductory Beginnings-
-
-Current Versions System, CVS, is a powerful
-method of allowing many developers
-to work on the same source code. It is used
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/help/C/l10n_scripts/error.sh b/help/C/l10n_scripts/error.sh
deleted file mode 100755
index 7d93857f..00000000
--- a/help/C/l10n_scripts/error.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
- zenity --error \
- --text="Could not find /var/log/syslog."
diff --git a/help/C/l10n_scripts/filesel.sh b/help/C/l10n_scripts/filesel.sh
deleted file mode 100755
index e9abe1d3..00000000
--- a/help/C/l10n_scripts/filesel.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-FILE=`zenity --file-selection --title="Select a File"`
-
-case $? in
- 0)
- echo "\"$FILE\" selected.";;
- 1)
- echo "No file selected.";;
- -1)
- echo "No file selected.";;
-esac
-
diff --git a/help/C/l10n_scripts/info.sh b/help/C/l10n_scripts/info.sh
deleted file mode 100755
index 2c19cfb1..00000000
--- a/help/C/l10n_scripts/info.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
- zenity --info \
- --text="Merge complete. Updated 3 of 10 files."
diff --git a/help/C/l10n_scripts/list.sh b/help/C/l10n_scripts/list.sh
deleted file mode 100755
index cc8304d3..00000000
--- a/help/C/l10n_scripts/list.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-zenity --list \
- --title="Choose the Bugs You Wish to View" \
- --column="Bug Number" --column="Severity" --column="Description" \
- 992383 Normal "GtkTreeView crashes on multiple selections" \
- 293823 High "GNOME Dictionary does not handle proxy" \
- 393823 Critical "Menu editing does not work in GNOME 2.0"
diff --git a/help/C/l10n_scripts/notification.sh b/help/C/l10n_scripts/notification.sh
deleted file mode 100755
index b7de9aba..00000000
--- a/help/C/l10n_scripts/notification.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-/gnome/head/cvs/zenity/src/zenity --notification \
---window-icon="info" \
---text="There are system updates necessary!"
diff --git a/help/C/l10n_scripts/progress.sh b/help/C/l10n_scripts/progress.sh
deleted file mode 100755
index 225c90ab..00000000
--- a/help/C/l10n_scripts/progress.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-(
-echo "10" ; sleep 1
-echo "# Updating mail logs" ; sleep 1
-echo "20" ; sleep 1
-echo "# Resetting cron jobs" ; sleep 1
-echo "50" ; sleep 1
-echo "This line will just be ignored" ; sleep 1
-echo "75" ; sleep 1
-echo "# Rebooting system" ; sleep 1
-echo "100" ; sleep 1
-) |
-zenity --progress --title="Update System Logs" --text="Scanning mail logs..." --percentage=0
-
-if [ "$?" = -1 ] ; then
- zenity --error --text="Update cancelled."
-fi
-
diff --git a/help/C/l10n_scripts/question.sh b/help/C/l10n_scripts/question.sh
deleted file mode 100755
index 6ed9374d..00000000
--- a/help/C/l10n_scripts/question.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
- zenity --question \
- --text="Are you sure you wish to proceed?"
diff --git a/help/C/l10n_scripts/text_entry.sh b/help/C/l10n_scripts/text_entry.sh
deleted file mode 100755
index 4afd006e..00000000
--- a/help/C/l10n_scripts/text_entry.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
- if zenity --entry \
- --title="Add an Entry" \
- --text="Enter your _password:" \
- --entry-text "password" \
- --hide-text
- then echo $?
- else echo "No password entered"
- fi
-
diff --git a/help/C/l10n_scripts/text_info.sh b/help/C/l10n_scripts/text_info.sh
deleted file mode 100755
index 711e51d8..00000000
--- a/help/C/l10n_scripts/text_info.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-FILE=`zenity --file-selection \
- --title="Select a File"`
-
-case $? in
- 0)
- zenity --text-info \
- --title=$FILE \
- --filename=$FILE \
- --editable 2>/tmp/tmp.txt;;
- 1)
- echo "No file selected.";;
- -1)
- echo "No file selected.";;
-esac
-
diff --git a/help/C/l10n_scripts/warning.sh b/help/C/l10n_scripts/warning.sh
deleted file mode 100755
index a39af9ac..00000000
--- a/help/C/l10n_scripts/warning.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
- zenity --warning \
- --text="Disconnect the power cable to avoid electrical shock."
bgstack15