Skip to content

Commit

Permalink
Merge pull request #42 from JosepPages/master
Browse files Browse the repository at this point in the history
Added Catalan
  • Loading branch information
defr0std committed Dec 28, 2016
2 parents 17ac916 + 7ae1742 commit ed9da4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion samples/HelloWorld/GreetingsManagement.al
Expand Up @@ -44,6 +44,7 @@ codeunit 70051100 GreetingsManagement
31: exit('Tamil: வணக்கம்');
32: exit('Sinhalese: ආයුබෝවන්');
33: exit('Swahili: Salamu, Dunia');
34: exit('Catalan: Hola món');
else
exit('Hello, World'); // Default to the good old one.
end;
Expand All @@ -53,6 +54,6 @@ codeunit 70051100 GreetingsManagement
procedure GetRandomGreeting() : Text;
begin
Randomize;
exit(GetHelloWorldText(Random(34)));
exit(GetHelloWorldText(Random(35)));
end;
}

0 comments on commit ed9da4e

Please sign in to comment.