goApp.go raw

   1  package lang
   2  
   3  func goAppDict() Com {
   4  	return Com{
   5  		Component: "goApp",
   6  		Languages: []Language{
   7  			{
   8  				Code: "en",
   9  				Definitions: []Text{
  10  					{
  11  						ID: "DESCRIPTION",
  12  						Definition: "Parallelcoin Pod Suite -- All-in-one everything" +
  13  							" for Parallelcoin!",
  14  					},
  15  					{
  16  						ID: "COPYRIGHT",
  17  						Definition: "Legacy portions derived from btcsuite/btcd under" +
  18  							" ISC licence. The remainder is already in your" +
  19  							" possession. Use it wisely.",
  20  					},
  21  					{
  22  						ID:         "NOSUBCMDREQ",
  23  						Definition: "no subcommand requested",
  24  					},
  25  					{
  26  						ID:         "STARTINGNODE",
  27  						Definition: "starting node",
  28  					},
  29  				},
  30  			},
  31  			{
  32  				Code: "rs",
  33  				Definitions: []Text{
  34  					{
  35  						ID: "DESCRIPTION",
  36  						Definition: "ParalelniNovcic Pod Programski Paket -- Sve-u-jednom garnitura" +
  37  							" za ParalelniNovcic!",
  38  					},
  39  					{
  40  						ID: "COPYRIGHT",
  41  						Definition: "Izvedeni deovi iz btcsuite/btcd su pod" +
  42  							" ISC licencom. Sve ostalo je u vasem" +
  43  							" vlasnistvu. Koristite se DUO-m mudro!",
  44  					},
  45  					{
  46  						ID:         "NOSUBCMDREQ",
  47  						Definition: "nije pozvana pod komanda",
  48  					},
  49  					{
  50  						ID:         "STARTINGNODE",
  51  						Definition: "pokrece se ",
  52  					},
  53  				},
  54  			},
  55  		},
  56  	}
  57  }
  58