示例#1
0
 class Information(OWWidget.Information):
     getting_data = Msg("Getting data")
     done = Msg("Done")
示例#2
0
 class Information(OWBaseWidget.Information):
     hello = Msg("A message")
示例#3
0
 class Error(OWWidget.Error):
     unexpected_error = Msg("{}")
示例#4
0
 class Error(OWWidget.Error):
     error = Msg("Coulld not get data!")
示例#5
0
 class Warning(widget.OWWidget.Warning):
     undefined_curves = Msg(
         "Some curves are undefined; check models and data")
示例#6
0
 class Error(widget.OWWidget.Error):
     undefined_curves = Msg(
         "No defined curves; check models and data")
示例#7
0
 class Warning(OWWidget.Warning):
     not_computed = Msg(
         "{} statistics cannot be computed and is omitted from results."
     )
 class Error(widget.OWWidget.Error):
     no_categorical = Msg("No categorical variables")
示例#9
0
 class Information(widget.OWWidget.Information):
     no_suitable_features = Msg(
         "No columns with unique values\n"
         "Only columns with unique valules are useful for row identifiers.")
 class Warning(OWWidget.Warning):
     senti_offline = Msg('No internet connection! Sentiment now only works '
                         'with local models.')
     senti_offline_no_lang = Msg('No internet connection and no local '
                                 'language resources are available.')
示例#11
0
 class Error(OWWidget.Error):
     # Relevant Terms cannot work with LSI or HDP, because it expects
     # topic-term probabilities.
     wrong_model = Msg("Relevant Terms only accepts output from LDA.")
示例#12
0
 class Warning(BaseEditorOrange.Warning):
     out_of_range = Msg("{} out of range.")
示例#13
0
 class Error(OWWidget.Error):
     no_lat_lon_vars = Msg("Data has no latitude and longitude variables.")