Try this:
Create a new database with 2 fields
"theGreeting" and "theYear"
Then copy the following script into your script editor:
set theYEAR to 2006
set Greeting to {"Happy New Year", "Prosit Neujahr", "Bonne Annee", "Gelukkig Nieuwjaar!", "Bliain nua fe mhaise dhuit", "Felice anno nuovo"}
tell application "FileMaker Developer"
tell front database
repeat with i from 1 to count of Greeting
create new record
tell record i
set cell "theGreeting" to item i of Greeting
set cell "theYear" to theYEAR
end tell
end repeat
end tell
end tell