summaryrefslogtreecommitdiff
path: root/help/C/l10n_scripts
diff options
context:
space:
mode:
Diffstat (limited to 'help/C/l10n_scripts')
-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
12 files changed, 0 insertions, 149 deletions
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