#!/bin/sh
#
# generates the date in form "month year"
language=$1

ScriptPath="`dirname $0`"

year="`date '+%Y'`"
month="`$ScriptPath/ScriptMonth $language`"

echo "$month $year"
###############################################################################
