diff options
author | N.N. <matju@users.sourceforge.net> | 2006-01-04 01:47:34 +0000 |
---|---|---|
committer | N.N. <matju@users.sourceforge.net> | 2006-01-04 01:47:34 +0000 |
commit | 0bd6b71e6279e6cf9f3cfc90a1c2c2b3239262e1 (patch) | |
tree | 9508f5781adf473d1695519bc0677ca8a737a22a | |
parent | a6abeda0b2af2621099716cab1dd2b7e99808f70 (diff) |
upcoming locale for PureUnity
svn path=/trunk/abstractions/pureunity/; revision=4359
-rw-r--r-- | generics/locale/english.tcl | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/generics/locale/english.tcl b/generics/locale/english.tcl new file mode 100644 index 0000000..09e3125 --- /dev/null +++ b/generics/locale/english.tcl @@ -0,0 +1,52 @@ + +say_namespace summary { + foreach {x y} { + f "floating-point" + ~ "signal" + \# "grid" + } { + say_category basic<$x> + say ~.do "" + say ~.norm "" + say ~.packunpack3 "" + say ~ "" + say ~.swap "" + say ~.taa "" + } + + say_category interfaces + proc pu_say {} { + } + + pu_say antireflexive {t } "" + pu_say antisymmetric {t } "" + pu_say associative {t } "" + pu_say commutative {t } "" + pu_say distributive {t } "" + pu_say equivalence {t } "" + pu_say invertible {t } "" + pu_say partialorder {t } "" + pu_say partialordereq {t } "" + pu_say reflexive {t } "" + pu_say totalorder {t } "" + pu_say totalordereq {t } "" + pu_say transitive {t } "" + pu_say trichotomy {t } "" + pu_say operator1 {t } "" + pu_say operator2 {t } "" + + say_category cancellators + say associator "" + say commutator "ab-ba" + say distributor "" + say invertor "" + + say_category misc + say twice "" + say 3times "" + say 4times "" + say ^ "" + say error "" + say protocols-tree "" + say tree "" +} |