Hello,
I am testing the helper package Mold for form data validation. (Thanks Phillip to copy it at Smalltalkhub) However, on a few place it sends the message #seasideTranslated. Which package should I load to get it? Thanks a lot Hilaire -- Dr. Geo - http://drgeo.eu iStoa - http://istoa.drgeo.eu _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
That message is defined in Seaside-Gettext-Core.
Use (ConfigurationOfSeaside3 project version: #stable) load: ‘Gettext' Johan > On 02 Feb 2015, at 12:07, Hilaire <[hidden email]> wrote: > > Hello, > > I am testing the helper package Mold for form data validation. > (Thanks Phillip to copy it at Smalltalkhub) > > However, on a few place it sends the message #seasideTranslated. > Which package should I load to get it? > > Thanks a lot > > Hilaire > > -- > Dr. Geo - http://drgeo.eu > iStoa - http://istoa.drgeo.eu > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Thanks for the info.
What about adding in Seaside core: String>>seasideTranslated "Seaside packages dedicated to localisation can override this method" ^ self Hilaire Le 02/02/2015 13:26, Johan Brichau a écrit : > That message is defined in Seaside-Gettext-Core. > > Use (ConfigurationOfSeaside3 project version: #stable) load: ‘Gettext' > > Johan -- Dr. Geo - http://drgeo.eu iStoa - http://istoa.drgeo.eu _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
If I understand you correctly, that means Seaside-Core will be a dirty package when I load Seaside-Gettext.
When I then update to a newer version of Seaside-Core, the change by Seaside-Gettext gets lost. That’s not something you want to happen. Why would you want such a method to live in the Core ? Johan > On 02 Feb 2015, at 17:22, Hilaire <[hidden email]> wrote: > > Thanks for the info. > > What about adding in Seaside core: > > String>>seasideTranslated > "Seaside packages dedicated to localisation can override this method" > ^ self > > Hilaire > > > > Le 02/02/2015 13:26, Johan Brichau a écrit : >> That message is defined in Seaside-Gettext-Core. >> >> Use (ConfigurationOfSeaside3 project version: #stable) load: ‘Gettext' >> >> Johan > > > -- > Dr. Geo - http://drgeo.eu > iStoa - http://istoa.drgeo.eu > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Le 02/02/2015 18:25, Johan Brichau a écrit :
> If I understand you correctly, that means Seaside-Core will be a dirty package when I load Seaside-Gettext. > When I then update to a newer version of Seaside-Core, the change by Seaside-Gettext gets lost. You are right. > That’s not something you want to happen. > > Why would you want such a method to live in the Core ? Some packages requires #seasideTranslated but you may not need l10n/gettext in your project. Of course you can just install it and ignore it :) Thanks Hilaire -- Dr. Geo - http://drgeo.eu iStoa - http://istoa.drgeo.eu _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |