I use trackfield with cck 6.x-2.6.., installed (activated) correctly. But adding Track field not possible, it seems, there is no entry in select-field.. What I'm doing wrong?

CommentFileSizeAuthor
#3 missing_track_field.jpg13.28 KBckidow
missing-trackfield.png59.47 KBfragtom

Comments

raintonr’s picture

I'm sorry... there seems to be something wrong with your install. Did you also enable 'Track CSV' or any of the other modules?

ckidow’s picture

D6.16
CCK 6.x-2.6
Trackfield 6.x-1.x-dev

Same here... can't find the "track" option in cck "field type" select field. Only can see "track map". I've installed and activated "track", "track csv" and "track map". No error outputs.

ckidow’s picture

StatusFileSize
new13.28 KB

Here it is...

ckidow’s picture

I found a solution. It is the badly translated string of "Track" in german into "Beiträge".

It would be cool if you guys could change

/*
 * Implementation of hook_field_info().
 */
function trackfield_field_info() {
  return array(
    'track' => array('label' => 'Track'),
  );
}

... into ...

/*
 * Implementation of hook_field_info().
 */
function trackfield_field_info() {
  return array(
    'track' => array('label' => 'Trackfield'),
  );
}
ckidow’s picture

Status: Active » Fixed

So I mark this as "fixed"...

raintonr’s picture

Status: Fixed » Active

Hang on a sec...

Are you saying that the text 'Track' magically gets translated into "Beiträge", even though there is no t() function? How has that happened?

ckidow’s picture

I think these strings are later integrated into some t() functions. Maybe in a foreach() loop...

raintonr’s picture

Status: Active » Closed (works as designed)

Ah... OK. No worries then.

estone’s picture

Same here: in Dutch the word 'Track' is translated as "opvolgen".